diff options
author | Dr Scofield | 2009-07-03 15:36:47 +0000 |
---|---|---|
committer | Dr Scofield | 2009-07-03 15:36:47 +0000 |
commit | 840f5f94859982413604a955cd47f9428b3a7c52 (patch) | |
tree | a1a8ca150c9a14ce3789067cc7152c5ce65b85e3 /OpenSim/Framework/RegionInfo.cs | |
parent | Thank you kindly, AnakinLohner, for a patch that addresses: (diff) | |
download | opensim-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 'OpenSim/Framework/RegionInfo.cs')
-rw-r--r-- | OpenSim/Framework/RegionInfo.cs | 3 |
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 |