MudEngine:

- Corrected CommandLogin to support the Player.Send/Receive methods.
 - Re-organized the Game class source code and added additional commenting.
 - Began adding code to remove un-wanted characters in the received byte stream in Player.Receive()
This commit is contained in:
Scionwest_cp 2010-08-01 17:34:59 -07:00
parent 942b038b1b
commit 29cdae3b1a
5 changed files with 199 additions and 129 deletions

View file

@ -2,7 +2,9 @@
using System;
using System.CodeDom;
using System.CodeDom.Compiler;
#if !MOBILE
using Microsoft.CSharp;
#endif
using System.Collections.Generic;
using System.Linq;
using System.IO;
@ -101,6 +103,7 @@ namespace MudEngine.Scripting
/// <returns></returns>
public bool CompileScripts()
{
#if !MOBILE
//Ensure the script path exists.
if (!System.IO.Directory.Exists(ScriptPath))
{
@ -180,6 +183,7 @@ namespace MudEngine.Scripting
}
else
return true;
#endif
}
/// <summary>