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