diff options
Diffstat (limited to 'OpenSim/Framework/RegionSettings.cs')
-rw-r--r-- | OpenSim/Framework/RegionSettings.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Framework/RegionSettings.cs b/OpenSim/Framework/RegionSettings.cs index a2dd64f..2c9f7d2 100644 --- a/OpenSim/Framework/RegionSettings.cs +++ b/OpenSim/Framework/RegionSettings.cs | |||
@@ -398,6 +398,20 @@ namespace OpenSim.Framework | |||
398 | set { m_LoadedCreationID = value; } | 398 | set { m_LoadedCreationID = value; } |
399 | } | 399 | } |
400 | 400 | ||
401 | private bool m_GodBlockSearch = false; | ||
402 | public bool GodBlockSearch | ||
403 | { | ||
404 | get { return m_GodBlockSearch; } | ||
405 | set { m_GodBlockSearch = value; } | ||
406 | } | ||
407 | |||
408 | private bool m_Casino = false; | ||
409 | public bool Casino | ||
410 | { | ||
411 | get { return m_Casino; } | ||
412 | set { m_Casino = value; } | ||
413 | } | ||
414 | |||
401 | // Telehub support | 415 | // Telehub support |
402 | private bool m_TelehubEnabled = false; | 416 | private bool m_TelehubEnabled = false; |
403 | public bool HasTelehub | 417 | public bool HasTelehub |