diff options
Diffstat (limited to '')
-rwxr-xr-x | OpenSim/Region/Framework/Scenes/Scene.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 352bc05..a293c92 100755 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -316,6 +316,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
316 | public bool m_seeIntoBannedRegion = false; | 316 | public bool m_seeIntoBannedRegion = false; |
317 | public int MaxUndoCount = 5; | 317 | public int MaxUndoCount = 5; |
318 | 318 | ||
319 | public bool AutomaticGodsOption {get; private set; } | ||
320 | |||
319 | public bool SeeIntoRegion { get; set; } | 321 | public bool SeeIntoRegion { get; set; } |
320 | 322 | ||
321 | // Using this for RegionReady module to prevent LoginsDisabled from changing under our feet; | 323 | // Using this for RegionReady module to prevent LoginsDisabled from changing under our feet; |
@@ -1207,6 +1209,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
1207 | 1209 | ||
1208 | #endregion Interest Management | 1210 | #endregion Interest Management |
1209 | 1211 | ||
1212 | AutomaticGodsOption = Util.GetConfigVarFromSections<bool>(config, "automatic_gods", | ||
1213 | new string[] { "Startup", "Permissions" }, true); | ||
1210 | 1214 | ||
1211 | StatsReporter = new SimStatsReporter(this); | 1215 | StatsReporter = new SimStatsReporter(this); |
1212 | 1216 | ||