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 91e07df..e668ad5 100644
--- a/OpenSim/Framework/RegionSettings.cs
+++ b/OpenSim/Framework/RegionSettings.cs
@@ -447,6 +447,28 @@ namespace OpenSim.Framework
447 set { m_LoadedCreationID = value; } 447 set { m_LoadedCreationID = value; }
448 } 448 }
449 449
450 private bool m_GodBlockSearch = false;
451 public bool GodBlockSearch
452 {
453 get { return m_GodBlockSearch; }
454 set { m_GodBlockSearch = value; }
455 }
456
457 private bool m_Casino = false;
458 public bool Casino
459 {
460 get { return m_Casino; }
461 set { m_Casino = value; }
462 }
463
464 // Telehub support
465 private bool m_TelehubEnabled = false;
466 public bool HasTelehub
467 {
468 get { return m_TelehubEnabled; }
469 set { m_TelehubEnabled = value; }
470 }
471
450 // Connected Telehub object 472 // Connected Telehub object
451 private UUID m_TelehubObject; 473 private UUID m_TelehubObject;
452 public UUID TelehubObject 474 public UUID TelehubObject