MudServer:

- Began working on in-line commands.

MudEngine:
 - Now logs when a player connects. MudServer prints this to the console via Log.GetMessages()

MudCompiler:
 - Added /bin/debug to ignore list.
This commit is contained in:
Scionwest_cp 2010-07-27 17:16:58 -07:00
parent d488a41822
commit 23e5efb58e
6 changed files with 32 additions and 8 deletions

View file

@ -110,9 +110,6 @@ namespace MudEngine.GameObjects.Characters
System.Text.UTF8Encoding enc = new System.Text.UTF8Encoding();
str = enc.GetString(data);
if (Game.IsDebug)
Log.Write("Client entered command: " + str);
// execute, and get result
str = ExecuteCommand(str);