aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
authorDan Lake2011-10-31 16:42:28 -0700
committerDan Lake2011-10-31 16:42:28 -0700
commit3c55f3015f5c9bffa3580abf310fc52598fd7d6f (patch)
treef17a1cdc4a03eb1d05536fab310206c7e856bcfb /OpenSim/Region/Framework/Scenes/Scene.cs
parentMerge branch 'master' of git://opensimulator.org/git/opensim (diff)
downloadopensim-SC_OLD-3c55f3015f5c9bffa3580abf310fc52598fd7d6f.zip
opensim-SC_OLD-3c55f3015f5c9bffa3580abf310fc52598fd7d6f.tar.gz
opensim-SC_OLD-3c55f3015f5c9bffa3580abf310fc52598fd7d6f.tar.bz2
opensim-SC_OLD-3c55f3015f5c9bffa3580abf310fc52598fd7d6f.tar.xz
Removed unused show commands from Scene.cs and SceneBase.cs. The show modules command in OpenSim.cs now shows both shared modules and region modules.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 7a5160c..e054f1b 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -4028,33 +4028,6 @@ namespace OpenSim.Region.Framework.Scenes
4028 } 4028 }
4029 } 4029 }
4030 4030
4031 public override void Show(string[] showParams)
4032 {
4033 base.Show(showParams);
4034
4035 switch (showParams[0])
4036 {
4037 case "users":
4038 m_log.Error("Current Region: " + RegionInfo.RegionName);
4039 m_log.ErrorFormat("{0,-16}{1,-16}{2,-25}{3,-25}{4,-16}{5,-16}{6,-16}", "Firstname", "Lastname",
4040 "Agent ID", "Session ID", "Circuit", "IP", "World");
4041
4042 ForEachScenePresence(delegate(ScenePresence sp)
4043 {
4044 m_log.ErrorFormat("{0,-16}{1,-16}{2,-25}{3,-25}{4,-16},{5,-16}{6,-16}",
4045 sp.Firstname,
4046 sp.Lastname,
4047 sp.UUID,
4048 sp.ControllingClient.AgentId,
4049 "Unknown",
4050 "Unknown",
4051 RegionInfo.RegionName);
4052 });
4053
4054 break;
4055 }
4056 }
4057
4058 #region Script Handling Methods 4031 #region Script Handling Methods
4059 4032
4060 /// <summary> 4033 /// <summary>