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

@ -803,7 +803,7 @@ namespace Server.Items
public static HousePlacementEntry Find(BaseHouse house)
{
object obj = m_Table[house.GetType()];
m_Table.TryGetValue(house.GetType(), out object obj);
if (obj is HousePlacementEntry entry)
return entry;
@ -825,9 +825,7 @@ namespace Server.Items
{
HousePlacementEntry e = entries[i];
object obj = m_Table[e.Type];
if (obj == null)
if (!m_Table.TryGetValue(e.Type, out object obj))
{
m_Table[e.Type] = e;
}