diff options
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSimMain.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs index ab03ed1..6968c41 100644 --- a/OpenSim/Region/Application/OpenSimMain.cs +++ b/OpenSim/Region/Application/OpenSimMain.cs | |||
@@ -422,7 +422,7 @@ namespace OpenSim | |||
422 | { | 422 | { |
423 | case "help": | 423 | case "help": |
424 | m_log.Error("show users - show info about connected users"); | 424 | m_log.Error("show users - show info about connected users"); |
425 | m_log.Error("shutdown - disconnect all clients and shutdown"); | 425 | m_log.Error("quit - disconnect all clients and shutdown"); |
426 | break; | 426 | break; |
427 | 427 | ||
428 | case "show": | 428 | case "show": |
@@ -442,6 +442,12 @@ namespace OpenSim | |||
442 | } | 442 | } |
443 | } | 443 | } |
444 | break; | 444 | break; |
445 | case "script": | ||
446 | for (int i = 0; i < m_localWorld.Count; i++) | ||
447 | { | ||
448 | ((Scene)m_localWorld[i]).SendCommandToScripts(cmdparams); | ||
449 | } | ||
450 | break; | ||
445 | 451 | ||
446 | case "quit": | 452 | case "quit": |
447 | case "shutdown": | 453 | case "shutdown": |