Fixes dictionary uses (#7)
This commit is contained in:
parent
d4a52344f2
commit
916d404c51
161 changed files with 1211 additions and 1722 deletions
|
|
@ -108,7 +108,7 @@ namespace Server.Engines.MLQuests.Gumps
|
|||
|
||||
private static void Timeout(NetState ns)
|
||||
{
|
||||
if (m_Pending.ContainsKey(ns))
|
||||
if (IsPending(ns))
|
||||
{
|
||||
m_Pending.Remove(ns);
|
||||
ns.Send(CloseRaceChanger.Instance);
|
||||
|
|
@ -339,4 +339,4 @@ namespace Server.Engines.MLQuests.Gumps
|
|||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,12 +26,7 @@ namespace Server.Engines.MLQuests
|
|||
|
||||
object[] attributes = t.GetCustomAttributes(m_Type, false);
|
||||
|
||||
if (attributes.Length != 0)
|
||||
result = ((QuesterNameAttribute)attributes[0]).QuesterName;
|
||||
else
|
||||
result = t.Name;
|
||||
|
||||
return m_Cache[t] = result;
|
||||
return m_Cache[t] = attributes.Length != 0 ? ((QuesterNameAttribute)attributes[0]).QuesterName : t.Name;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue