Fixes dictionary uses (#7)
This commit is contained in:
parent
d4a52344f2
commit
916d404c51
161 changed files with 1211 additions and 1722 deletions
|
|
@ -54,9 +54,8 @@ namespace Server.Misc
|
|||
from.Location = dest.Location;
|
||||
from.Map = dest.Map;
|
||||
}
|
||||
else if (m_MoveHistory.ContainsKey(from))
|
||||
else if (m_MoveHistory.TryGetValue(from, out LocationInfo orig))
|
||||
{
|
||||
LocationInfo orig = m_MoveHistory[from];
|
||||
from.SendMessage("Your character was moved from {0} ({1}) due to a detected client crash.", orig.Location,
|
||||
orig.Map);
|
||||
|
||||
|
|
@ -87,4 +86,4 @@ namespace Server.Misc
|
|||
public Map Map{ get; }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue