aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/RegionSettings.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/RegionSettings.cs')
-rw-r--r--OpenSim/Framework/RegionSettings.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/OpenSim/Framework/RegionSettings.cs b/OpenSim/Framework/RegionSettings.cs
index e115432..786638e 100644
--- a/OpenSim/Framework/RegionSettings.cs
+++ b/OpenSim/Framework/RegionSettings.cs
@@ -439,6 +439,28 @@ namespace OpenSim.Framework
439 set { m_LoadedCreationID = value; } 439 set { m_LoadedCreationID = value; }
440 } 440 }
441 441
442 private bool m_GodBlockSearch = false;
443 public bool GodBlockSearch
444 {
445 get { return m_GodBlockSearch; }
446 set { m_GodBlockSearch = value; }
447 }
448
449 private bool m_Casino = false;
450 public bool Casino
451 {
452 get { return m_Casino; }
453 set { m_Casino = value; }
454 }
455
456 // Telehub support
457 private bool m_TelehubEnabled = false;
458 public bool HasTelehub
459 {
460 get { return m_TelehubEnabled; }
461 set { m_TelehubEnabled = value; }
462 }
463
442 // Connected Telehub object 464 // Connected Telehub object
443 private UUID m_TelehubObject; 465 private UUID m_TelehubObject;
444 public UUID TelehubObject 466 public UUID TelehubObject