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:
parent
942b038b1b
commit
29cdae3b1a
5 changed files with 199 additions and 129 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue