This commit is contained in:
mark 2007-08-12 18:10:42 +00:00
parent 4e941e36b9
commit 521e728edd
3 changed files with 3 additions and 1 deletions

View file

@ -36,7 +36,7 @@ namespace Server.Commands.Generic
else
{
BaseCommand command = null;
m_Commands.TryGetValue( e.GetString( 1 ), out command );
Commands.TryGetValue( e.GetString( 1 ), out command );
if ( command == null )
{

View file

@ -2,6 +2,7 @@ using System;
using System.Reflection;
using System.Collections;
using Server;
using Server.Commands.Generic;
using Server.Network;
using Server.Menus;
using Server.Menus.Questions;

View file

@ -2,6 +2,7 @@ using System;
using System.Reflection;
using System.Collections;
using Server;
using Server.Commands.Generic;
using Server.Network;
using Server.Prompts;
using Server.Commands;