mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
* Complete refactoring accidentally left unfinished so that all server help requests flow through the ShowHelp() method
This commit is contained in:
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user