MudEngine:

- Moved List command out of the engine and into the MudGame as a script.

MudGame:
 - Migrated List command from engine to game script.
 - List command now supports 'List Commands'. It will now print all commands for admins, and only non-admin commands for non-admin players.
 - Added CreateRoom scripted command for instantly creating Rooms without needing to fully qualify a path. The Room will be created in the Admin's current Realm>Zone.
   In order to create a Room outside of their current Zone they will need to use the standard 'Create' command and supply a fully qualified name such as 'MyRealm>MyZone>MyRoom'
This commit is contained in:
Scionwest_cp 2010-09-04 09:16:00 -07:00
parent 295a8f5ab2
commit 00ce7b0025
7 changed files with 244 additions and 3 deletions

View file

@ -20,6 +20,7 @@ namespace MudEngine.Commands
{
public String Name { get; set; }
public Boolean Override { get; set; }
public List<String> Help { get; set; }
public CommandRestart()