Commands script folder renamed to BaseCommands. Users creating custom commands are encouraged to create them in a "Commands" or "Custom Commands" folder.

This commit is contained in:
Scionwest_cp 2012-03-10 19:43:42 -08:00
parent 11b2e73f35
commit 32210124e0
8 changed files with 11 additions and 12 deletions

View file

@ -113,14 +113,15 @@ namespace MudEngine.Game
this.Multiplayer = true;
this.MinimumPasswordSize = 8;
this.AutoSave = true;
//Setup our server.
this.Server = new Server(this, port);
//Setup default save paths.
this.SavePaths = new DataPaths();
this.SavePaths.SetRelativePath("Data", DataTypes.Root);
//Setup our server.
this.Server = new Server(this, port);
//Instance our World
this.World = new World(this);
}