crash fix, issue #235
This commit is contained in:
parent
b9e3476d8b
commit
4e941e36b9
1 changed files with 2 additions and 1 deletions
|
|
@ -35,7 +35,8 @@ namespace Server.Commands.Generic
|
|||
}
|
||||
else
|
||||
{
|
||||
BaseCommand command = this.Commands[e.GetString( 1 )];
|
||||
BaseCommand command = null;
|
||||
m_Commands.TryGetValue( e.GetString( 1 ), out command );
|
||||
|
||||
if ( command == null )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue