aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/RegionInfo.cs
diff options
context:
space:
mode:
authorDr Scofield2009-07-03 15:36:47 +0000
committerDr Scofield2009-07-03 15:36:47 +0000
commit840f5f94859982413604a955cd47f9428b3a7c52 (patch)
treea1a8ca150c9a14ce3789067cc7152c5ce65b85e3 /OpenSim/Framework/RegionInfo.cs
parentThank you kindly, AnakinLohner, for a patch that addresses: (diff)
downloadopensim-SC_OLD-840f5f94859982413604a955cd47f9428b3a7c52.zip
opensim-SC_OLD-840f5f94859982413604a955cd47f9428b3a7c52.tar.gz
opensim-SC_OLD-840f5f94859982413604a955cd47f9428b3a7c52.tar.bz2
opensim-SC_OLD-840f5f94859982413604a955cd47f9428b3a7c52.tar.xz
- adding a Persistent flag to RegionInfo
- adding EstateSettings.Save() to RemoteAdmin ACL code (invoked only when region is persistent)
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/RegionInfo.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs
index 7ac1e62..8f9b551 100644
--- a/OpenSim/Framework/RegionInfo.cs
+++ b/OpenSim/Framework/RegionInfo.cs
@@ -209,6 +209,8 @@ namespace OpenSim.Framework
209 public string DataStore = String.Empty; 209 public string DataStore = String.Empty;
210 public string RegionFile = String.Empty; 210 public string RegionFile = String.Empty;
211 public bool isSandbox = false; 211 public bool isSandbox = false;
212 public bool Persistent = true;
213
212 private EstateSettings m_estateSettings; 214 private EstateSettings m_estateSettings;
213 private RegionSettings m_regionSettings; 215 private RegionSettings m_regionSettings;
214 // private IConfigSource m_configSource = null; 216 // private IConfigSource m_configSource = null;
@@ -233,6 +235,7 @@ namespace OpenSim.Framework
233 private bool m_clampPrimSize = false; 235 private bool m_clampPrimSize = false;
234 private int m_objectCapacity = 0; 236 private int m_objectCapacity = 0;
235 237
238
236 // Apparently, we're applying the same estatesettings regardless of whether it's local or remote. 239 // Apparently, we're applying the same estatesettings regardless of whether it's local or remote.
237 240
238 // MT: Yes. Estates can't span trust boundaries. Therefore, it can be 241 // MT: Yes. Estates can't span trust boundaries. Therefore, it can be