diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 27 |
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> |