From 8ae8bec4d148ace42aa176f924399464d5bcf7eb Mon Sep 17 00:00:00 2001
From: Homer Horwitz
Date: Fri, 12 Sep 2008 22:39:17 +0000
Subject: Changed "show users" command to display only root agents, "show users
full" to display root and child agents (mantis #2171).
---
OpenSim/Region/Environment/Scenes/Scene.cs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'OpenSim/Region/Environment')
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
///
/// Shows various details about the sim based on the parameters supplied by the console command in openSimMain.
///
- ///
- public void Show(string showWhat)
+ /// What to show
+ public void Show(string[] showParams)
{
- switch (showWhat)
+ switch (showParams[0])
{
case "users":
m_log.Error("Current Region: " + RegionInfo.RegionName);
--
cgit v1.1