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/Framework/Servers/BaseOpenSimServer.cs | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
(limited to 'OpenSim/Framework/Servers')
diff --git a/OpenSim/Framework/Servers/BaseOpenSimServer.cs b/OpenSim/Framework/Servers/BaseOpenSimServer.cs
index 794dbd8..e149a35 100644
--- a/OpenSim/Framework/Servers/BaseOpenSimServer.cs
+++ b/OpenSim/Framework/Servers/BaseOpenSimServer.cs
@@ -254,7 +254,7 @@ namespace OpenSim.Framework.Servers
case "show":
if (cmdparams.Length > 0)
{
- Show(cmdparams[0]);
+ Show(cmdparams);
}
break;
@@ -317,12 +317,12 @@ namespace OpenSim.Framework.Servers
///
/// Outputs to the console information about the region
///
- ///
- /// What information to display (valid arguments are "uptime", "users")
+ ///
+ /// What information to display (valid arguments are "uptime", "users", ...)
///
- public virtual void Show(string showWhat)
+ public virtual void Show(string[] showParams)
{
- switch (showWhat)
+ switch (showParams[0])
{
case "info":
Notice("Version: " + m_version);
--
cgit v1.1