diff options
author | Homer Horwitz | 2008-09-12 22:39:17 +0000 |
---|---|---|
committer | Homer Horwitz | 2008-09-12 22:39:17 +0000 |
commit | 8ae8bec4d148ace42aa176f924399464d5bcf7eb (patch) | |
tree | 024830a1b89b94f6173a604064535063d30bc2b3 /OpenSim/Region/Environment | |
parent | * Patch http://opensimulator.org/mantis/view.php?id=2172 (diff) | |
download | opensim-SC_OLD-8ae8bec4d148ace42aa176f924399464d5bcf7eb.zip opensim-SC_OLD-8ae8bec4d148ace42aa176f924399464d5bcf7eb.tar.gz opensim-SC_OLD-8ae8bec4d148ace42aa176f924399464d5bcf7eb.tar.bz2 opensim-SC_OLD-8ae8bec4d148ace42aa176f924399464d5bcf7eb.tar.xz |
Changed "show users" command to display only root agents, "show users full" to
display root and child agents (mantis #2171).
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index da76ab8..7116904 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -3468,10 +3468,10 @@ namespace OpenSim.Region.Environment.Scenes | |||
3468 | /// <summary> | 3468 | /// <summary> |
3469 | /// Shows various details about the sim based on the parameters supplied by the console command in openSimMain. | 3469 | /// Shows various details about the sim based on the parameters supplied by the console command in openSimMain. |
3470 | /// </summary> | 3470 | /// </summary> |
3471 | /// <param name="showWhat"></param> | 3471 | /// <param name="showParams">What to show</param> |
3472 | public void Show(string showWhat) | 3472 | public void Show(string[] showParams) |
3473 | { | 3473 | { |
3474 | switch (showWhat) | 3474 | switch (showParams[0]) |
3475 | { | 3475 | { |
3476 | case "users": | 3476 | case "users": |
3477 | m_log.Error("Current Region: " + RegionInfo.RegionName); | 3477 | m_log.Error("Current Region: " + RegionInfo.RegionName); |