diff options
author | gareth | 2007-03-06 16:03:35 +0000 |
---|---|---|
committer | gareth | 2007-03-06 16:03:35 +0000 |
commit | d4cd213b32981a6be0089133f62fd57b1a4fff78 (patch) | |
tree | 82b12370faad8ca3faec5b854a2db6c469caeab3 | |
parent | Implemented local console and VERY rough skeleton for TCP/Worldchat console (diff) | |
download | opensim-SC_OLD-d4cd213b32981a6be0089133f62fd57b1a4fff78.zip opensim-SC_OLD-d4cd213b32981a6be0089133f62fd57b1a4fff78.tar.gz opensim-SC_OLD-d4cd213b32981a6be0089133f62fd57b1a4fff78.tar.bz2 opensim-SC_OLD-d4cd213b32981a6be0089133f62fd57b1a4fff78.tar.xz |
Updated help message on console
-rw-r--r-- | src/ServerConsole.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ServerConsole.cs b/src/ServerConsole.cs index 690e8ee..21a465d 100644 --- a/src/ServerConsole.cs +++ b/src/ServerConsole.cs | |||
@@ -144,6 +144,11 @@ namespace OpenSim | |||
144 | // Runs a command with a number of parameters | 144 | // Runs a command with a number of parameters |
145 | public Object RunCmd(string Cmd, string[] cmdparams) { | 145 | public Object RunCmd(string Cmd, string[] cmdparams) { |
146 | switch(Cmd) { | 146 | switch(Cmd) { |
147 | case "help": | ||
148 | this.WriteLine("show users - show info about connected users"); | ||
149 | this.WriteLine("shutdown - disconnect all clients and shutdown"); | ||
150 | break; | ||
151 | |||
147 | case "show": | 152 | case "show": |
148 | ShowCommands(cmdparams[0]); | 153 | ShowCommands(cmdparams[0]); |
149 | break; | 154 | break; |