From 9df74cf726c5b1ae89e7333ee678a2d6d198d978 Mon Sep 17 00:00:00 2001 From: Dan Lake Date: Sun, 2 Jan 2011 18:28:42 -0800 Subject: [PATCH] The "show" command on scene does not ever seem to be called anywhere. Commenting out the implementation for now and everything still builds. Might be a patch for master or needs a way to call it. --- OpenSim/Region/Framework/Scenes/Scene.cs | 3 ++- OpenSim/Region/Framework/Scenes/SceneBase.cs | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index b56647c32b..6f3849e6d3 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs @@ -4307,6 +4307,7 @@ namespace OpenSim.Region.Framework.Scenes } } + /* public override void Show(string[] showParams) { base.Show(showParams); @@ -4332,7 +4333,7 @@ namespace OpenSim.Region.Framework.Scenes break; } - } + }*/ #region Script Handling Methods diff --git a/OpenSim/Region/Framework/Scenes/SceneBase.cs b/OpenSim/Region/Framework/Scenes/SceneBase.cs index f343bc861e..8f0f4c3542 100644 --- a/OpenSim/Region/Framework/Scenes/SceneBase.cs +++ b/OpenSim/Region/Framework/Scenes/SceneBase.cs @@ -471,6 +471,8 @@ namespace OpenSim.Region.Framework.Scenes /// Shows various details about the sim based on the parameters supplied by the console command in openSimMain. /// /// What to show + /// + /* public virtual void Show(string[] showParams) { switch (showParams[0]) @@ -486,7 +488,7 @@ namespace OpenSim.Region.Framework.Scenes } break; } - } + }*/ /// /// Call this from a region module to add a command to the OpenSim console.