Updated help message on console

adam
gareth 2007-03-06 16:03:35 +00:00
parent d828af7036
commit d4cd213b32
1 changed files with 5 additions and 0 deletions

View File

@ -144,6 +144,11 @@ namespace OpenSim
// Runs a command with a number of parameters
public Object RunCmd(string Cmd, string[] cmdparams) {
switch(Cmd) {
case "help":
this.WriteLine("show users - show info about connected users");
this.WriteLine("shutdown - disconnect all clients and shutdown");
break;
case "show":
ShowCommands(cmdparams[0]);
break;