diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneBase.cs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneBase.cs b/OpenSim/Region/Framework/Scenes/SceneBase.cs index bf861b8..73e9392 100644 --- a/OpenSim/Region/Framework/Scenes/SceneBase.cs +++ b/OpenSim/Region/Framework/Scenes/SceneBase.cs | |||
@@ -458,27 +458,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
458 | #endregion | 458 | #endregion |
459 | 459 | ||
460 | /// <summary> | 460 | /// <summary> |
461 | /// Shows various details about the sim based on the parameters supplied by the console command in openSimMain. | ||
462 | /// </summary> | ||
463 | /// <param name="showParams">What to show</param> | ||
464 | public virtual void Show(string[] showParams) | ||
465 | { | ||
466 | switch (showParams[0]) | ||
467 | { | ||
468 | case "modules": | ||
469 | m_log.Error("The currently loaded modules in " + RegionInfo.RegionName + " are:"); | ||
470 | foreach (IRegionModule module in Modules.Values) | ||
471 | { | ||
472 | if (!module.IsSharedModule) | ||
473 | { | ||
474 | m_log.Error("Region Module: " + module.Name); | ||
475 | } | ||
476 | } | ||
477 | break; | ||
478 | } | ||
479 | } | ||
480 | |||
481 | /// <summary> | ||
482 | /// Call this from a region module to add a command to the OpenSim console. | 461 | /// Call this from a region module to add a command to the OpenSim console. |
483 | /// </summary> | 462 | /// </summary> |
484 | /// <param name="mod"></param> | 463 | /// <param name="mod"></param> |