This reverts commit 179cb50557.
This commit is contained in:
parent
179cb50557
commit
c2ecc76457
588 changed files with 16260 additions and 10926 deletions
|
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
|
|
@ -30,10 +31,12 @@ namespace Server.Items
|
|||
|
||||
writer.Write(timerCount);
|
||||
|
||||
foreach (var (m, value) in DisguiseTimers.Timers)
|
||||
foreach (KeyValuePair<Mobile, Timer> entry in DisguiseTimers.Timers)
|
||||
{
|
||||
Mobile m = entry.Key;
|
||||
|
||||
writer.Write(m);
|
||||
writer.Write(value.Next - DateTime.UtcNow);
|
||||
writer.Write(entry.Value.Next - DateTime.UtcNow);
|
||||
writer.Write(m.NameMod);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue