aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneBase.cs
diff options
context:
space:
mode:
authorMelanie2011-11-01 23:54:09 +0000
committerMelanie2011-11-01 23:54:09 +0000
commitb69f679122fb7fdc0f77fc198e148f42797a2eef (patch)
treee06d4f4572a91a58c79c03c60b0fca5574467834 /OpenSim/Region/Framework/Scenes/SceneBase.cs
parentMerge branch 'master' into bigmerge (diff)
parentRemoved see_into_this_sim_from_neighbor configuration option. (diff)
downloadopensim-SC_OLD-b69f679122fb7fdc0f77fc198e148f42797a2eef.zip
opensim-SC_OLD-b69f679122fb7fdc0f77fc198e148f42797a2eef.tar.gz
opensim-SC_OLD-b69f679122fb7fdc0f77fc198e148f42797a2eef.tar.bz2
opensim-SC_OLD-b69f679122fb7fdc0f77fc198e148f42797a2eef.tar.xz
Merge branch 'master' into bigmerge
Conflicts: OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneBase.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneBase.cs21
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>