diff --git a/Scripts/Commands/Generic/Implementors/SerialCommandImplementor.cs b/Scripts/Commands/Generic/Implementors/SerialCommandImplementor.cs index 9cf3d5c4e..50ab0c871 100644 --- a/Scripts/Commands/Generic/Implementors/SerialCommandImplementor.cs +++ b/Scripts/Commands/Generic/Implementors/SerialCommandImplementor.cs @@ -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 ) {