diff --git a/Scripts/Commands/Generic/Implementors/SerialCommandImplementor.cs b/Scripts/Commands/Generic/Implementors/SerialCommandImplementor.cs index 50ab0c871..da8aa4d70 100644 --- a/Scripts/Commands/Generic/Implementors/SerialCommandImplementor.cs +++ b/Scripts/Commands/Generic/Implementors/SerialCommandImplementor.cs @@ -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 ) { diff --git a/Scripts/Gumps/Properties/PropsGump.cs b/Scripts/Gumps/Properties/PropsGump.cs index b56d95d0b..6b3a2ce13 100644 --- a/Scripts/Gumps/Properties/PropsGump.cs +++ b/Scripts/Gumps/Properties/PropsGump.cs @@ -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; diff --git a/Scripts/Gumps/Properties/SetObjectGump.cs b/Scripts/Gumps/Properties/SetObjectGump.cs index 26a1f8510..0b33ebd72 100644 --- a/Scripts/Gumps/Properties/SetObjectGump.cs +++ b/Scripts/Gumps/Properties/SetObjectGump.cs @@ -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;