Fixes dictionary uses (#7)

This commit is contained in:
Kamron Batman 2018-11-02 08:16:42 -07:00 committed by GitHub
parent d4a52344f2
commit 916d404c51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
161 changed files with 1211 additions and 1722 deletions

View file

@ -1529,7 +1529,7 @@ namespace Server.Items
!(nearest is Cobbler && mob is Provisioner))
continue;
if (m_AcquireTable[mob.GetType()] is FillableContent check)
if (m_AcquireTable.TryGetValue(mob.GetType(), out FillableContent check))
{
nearest = mob;
content = check;

View file

@ -390,9 +390,7 @@ namespace Server.Items
public static void Close(Container c)
{
m_Table.TryGetValue(c, out Timer t);
if (t != null)
if (m_Table.TryGetValue(c, out Timer t))
{
t.Stop();
m_Table.Remove(c);
@ -436,4 +434,4 @@ namespace Server.Items
DynamicFurniture.Close(m_Container);
}
}
}
}