aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
authorMelanie Thielker2010-07-21 12:31:59 +0200
committerMelanie Thielker2010-07-21 12:32:23 +0200
commitfb89d0ff4eb4636a6a70fd45c85b935e0a6b388a (patch)
tree4e716d31b6b5867750abceb1a85aa3261c684eeb /OpenSim/Region/Framework/Scenes/Scene.cs
parentMerge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff)
downloadopensim-SC_OLD-fb89d0ff4eb4636a6a70fd45c85b935e0a6b388a.zip
opensim-SC_OLD-fb89d0ff4eb4636a6a70fd45c85b935e0a6b388a.tar.gz
opensim-SC_OLD-fb89d0ff4eb4636a6a70fd45c85b935e0a6b388a.tar.bz2
opensim-SC_OLD-fb89d0ff4eb4636a6a70fd45c85b935e0a6b388a.tar.xz
Allow megaregions to be used in M7, should we so decide
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index f79bd23..2a498cc 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -137,6 +137,7 @@ namespace OpenSim.Region.Framework.Scenes
137 protected SceneCommunicationService m_sceneGridService; 137 protected SceneCommunicationService m_sceneGridService;
138 public bool LoginsDisabled = true; 138 public bool LoginsDisabled = true;
139 public bool LoadingPrims = false; 139 public bool LoadingPrims = false;
140 public bool CombineRegions = false;
140 141
141 public new float TimeDilation 142 public new float TimeDilation
142 { 143 {
@@ -768,6 +769,7 @@ namespace OpenSim.Region.Framework.Scenes
768 } 769 }
769 770
770 m_strictAccessControl = startupConfig.GetBoolean("StrictAccessControl", m_strictAccessControl); 771 m_strictAccessControl = startupConfig.GetBoolean("StrictAccessControl", m_strictAccessControl);
772 CombineRegions = startupConfig.GetBoolean("CombineContiguousRegions", false);
771 773
772 #region BinaryStats 774 #region BinaryStats
773 775