Fixes dictionary uses (#7)
This commit is contained in:
parent
d4a52344f2
commit
916d404c51
161 changed files with 1211 additions and 1722 deletions
|
|
@ -435,11 +435,9 @@ namespace Server.Items
|
|||
return null;
|
||||
}
|
||||
|
||||
m_Table.TryGetValue(from, out List<Spellbook> list);
|
||||
|
||||
bool searchAgain = false;
|
||||
|
||||
if (list == null)
|
||||
if (!m_Table.TryGetValue(from, out List<Spellbook> list))
|
||||
m_Table[from] = list = FindAllSpellbooks(from);
|
||||
else
|
||||
searchAgain = true;
|
||||
|
|
@ -911,4 +909,4 @@ namespace Server.Items
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue