This commit is contained in:
mark 2009-08-07 10:10:49 +00:00
parent a8ea11ea5b
commit dd3c904944

View file

@ -64,6 +64,9 @@ namespace Server.Commands
public static void WriteLine( Mobile from, string format, params object[] args )
{
if ( !m_Enabled )
return;
WriteLine( from, String.Format( format, args ) );
}