aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ServerConsole.cs5
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;