stupid bug ive been too lazy to fix

This commit is contained in:
mark 2007-02-11 05:30:33 +00:00
parent 75e8798c18
commit 1b43898c9a

View file

@ -276,7 +276,8 @@ namespace Server.Commands.Generic
{
if ( e.Length >= 1 )
{
BaseCommand command = m_Commands[e.GetString( 0 )];
BaseCommand command = null;
m_Commands.TryGetValue( e.GetString( 0 ), out command );
if ( command == null )
{