Fixes dictionary uses (#7)
This commit is contained in:
parent
d4a52344f2
commit
916d404c51
161 changed files with 1211 additions and 1722 deletions
|
|
@ -95,9 +95,7 @@ namespace Server.Items
|
|||
if ( m_Entries == null )
|
||||
m_Entries = new Dictionary<Mobile, ScoreEntry>();
|
||||
|
||||
ScoreEntry e = m_Entries[from];
|
||||
|
||||
if ( e == null )
|
||||
if (!m_Entries.TryGetValue(from, out ScoreEntry e))
|
||||
m_Entries[from] = e = new ScoreEntry();
|
||||
|
||||
return e;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue