diff options
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 2061ab9..fb62504 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -56,7 +56,7 @@ namespace OpenSim | |||
56 | 56 | ||
57 | private string m_timedScript = "disabled"; | 57 | private string m_timedScript = "disabled"; |
58 | private Timer m_scriptTimer; | 58 | private Timer m_scriptTimer; |
59 | 59 | ||
60 | /// <summary> | 60 | /// <summary> |
61 | /// List of Console Plugin Commands | 61 | /// List of Console Plugin Commands |
62 | /// </summary> | 62 | /// </summary> |
@@ -601,11 +601,11 @@ namespace OpenSim | |||
601 | break; | 601 | break; |
602 | } | 602 | } |
603 | } | 603 | } |
604 | 604 | ||
605 | public override void ShowHelp(string[] helpArgs) | 605 | public override void ShowHelp(string[] helpArgs) |
606 | { | 606 | { |
607 | base.ShowHelp(helpArgs); | 607 | base.ShowHelp(helpArgs); |
608 | 608 | ||
609 | m_console.Notice("alert - send alert to a designated user or all users."); | 609 | m_console.Notice("alert - send alert to a designated user or all users."); |
610 | m_console.Notice(" alert [First] [Last] [Message] - send an alert to a user. Case sensitive."); | 610 | m_console.Notice(" alert [First] [Last] [Message] - send an alert to a user. Case sensitive."); |
611 | m_console.Notice(" alert general [Message] - send an alert to all users."); | 611 | m_console.Notice(" alert general [Message] - send an alert to all users."); |
@@ -619,7 +619,7 @@ namespace OpenSim | |||
619 | m_console.Notice(" debug scene [scripting] [collision] [physics] - Enable/Disable debug stuff, each can be True/False"); | 619 | m_console.Notice(" debug scene [scripting] [collision] [physics] - Enable/Disable debug stuff, each can be True/False"); |
620 | m_console.Notice("edit-scale [prim name] [x] [y] [z] - resize given prim"); | 620 | m_console.Notice("edit-scale [prim name] [x] [y] [z] - resize given prim"); |
621 | m_console.Notice("export-map [filename] - save image of world map"); | 621 | m_console.Notice("export-map [filename] - save image of world map"); |
622 | m_console.Notice("force-update - force an update of prims in the scene"); | 622 | m_console.Notice("force-update - force an update of prims in the scene"); |
623 | m_console.Notice("restart - disconnects all clients and restarts the sims in the instance."); | 623 | m_console.Notice("restart - disconnects all clients and restarts the sims in the instance."); |
624 | m_console.Notice("remove-region [name] - remove a region"); | 624 | m_console.Notice("remove-region [name] - remove a region"); |
625 | m_console.Notice("load-xml [filename] - load prims from XML (DEPRECATED)"); | 625 | m_console.Notice("load-xml [filename] - load prims from XML (DEPRECATED)"); |
@@ -637,15 +637,15 @@ namespace OpenSim | |||
637 | m_console.Notice("config set section field value - set a config value"); | 637 | m_console.Notice("config set section field value - set a config value"); |
638 | m_console.Notice("config get section field - get a config value"); | 638 | m_console.Notice("config get section field - get a config value"); |
639 | m_console.Notice("config save - save OpenSim.ini"); | 639 | m_console.Notice("config save - save OpenSim.ini"); |
640 | m_console.Notice("terrain help - show help for terrain commands."); | 640 | m_console.Notice("terrain help - show help for terrain commands."); |
641 | 641 | ||
642 | ShowPluginCommandsHelp(CombineParams(helpArgs, 0), m_console); | 642 | ShowPluginCommandsHelp(CombineParams(helpArgs, 0), m_console); |
643 | 643 | ||
644 | if (m_sandbox) | 644 | if (m_sandbox) |
645 | { | 645 | { |
646 | m_console.Notice(""); | 646 | m_console.Notice(""); |
647 | m_console.Notice("create user - adds a new user."); | 647 | m_console.Notice("create user - adds a new user."); |
648 | } | 648 | } |
649 | } | 649 | } |
650 | 650 | ||
651 | // see BaseOpenSimServer | 651 | // see BaseOpenSimServer |