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/Framework/Servers | |
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/Framework/Servers')
-rw-r--r-- | OpenSim/Framework/Servers/BaseOpenSimServer.cs | 10 |
1 files changed, 5 insertions, 5 deletions
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 | |||
254 | case "show": | 254 | case "show": |
255 | if (cmdparams.Length > 0) | 255 | if (cmdparams.Length > 0) |
256 | { | 256 | { |
257 | Show(cmdparams[0]); | 257 | Show(cmdparams); |
258 | } | 258 | } |
259 | break; | 259 | break; |
260 | 260 | ||
@@ -317,12 +317,12 @@ namespace OpenSim.Framework.Servers | |||
317 | /// <summary> | 317 | /// <summary> |
318 | /// Outputs to the console information about the region | 318 | /// Outputs to the console information about the region |
319 | /// </summary> | 319 | /// </summary> |
320 | /// <param name="showWhat"> | 320 | /// <param name="showParams"> |
321 | /// What information to display (valid arguments are "uptime", "users") | 321 | /// What information to display (valid arguments are "uptime", "users", ...) |
322 | /// </param> | 322 | /// </param> |
323 | public virtual void Show(string showWhat) | 323 | public virtual void Show(string[] showParams) |
324 | { | 324 | { |
325 | switch (showWhat) | 325 | switch (showParams[0]) |
326 | { | 326 | { |
327 | case "info": | 327 | case "info": |
328 | Notice("Version: " + m_version); | 328 | Notice("Version: " + m_version); |