From 521e728edd3f7886e77cc661e6d5f01109b9e994 Mon Sep 17 00:00:00 2001 From: mark Date: Sun, 12 Aug 2007 18:10:42 +0000 Subject: [PATCH] fixed --- .../Commands/Generic/Implementors/SerialCommandImplementor.cs | 2 +- Scripts/Gumps/Properties/PropsGump.cs | 1 + Scripts/Gumps/Properties/SetObjectGump.cs | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) 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;