* Complete refactoring accidentally left unfinished so that all server help requests flow through the ShowHelp() method

This commit is contained in:
Justin Clarke Casey
2008-09-15 17:45:48 +00:00
parent 6d289c3ae0
commit 9170361bee
4 changed files with 17 additions and 69 deletions

View File

@@ -227,12 +227,6 @@ namespace OpenSim.Grid.UserServer
switch (cmd)
{
case "help":
m_console.Notice("create user - create a new user");
m_console.Notice(
"logoff-user <firstname> <lastname> <message> - logs off the specified user from the grid");
break;
case "create":
do_create(cmdparams[0]);
break;
@@ -309,6 +303,15 @@ namespace OpenSim.Grid.UserServer
break;
}
}
protected override void ShowHelp(string[] helpArgs)
{
base.ShowHelp(helpArgs);
m_console.Notice("create user - create a new user");
m_console.Notice(
"logoff-user <firstname> <lastname> <message> - logs off the specified user from the grid");
}
public override void Shutdown()
{