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 4ce3392..c142bd9 100644
--- a/OpenSim/Framework/RegionSettings.cs
+++ b/OpenSim/Framework/RegionSettings.cs
@@ -455,6 +455,28 @@ namespace OpenSim.Framework
455 set { m_LoadedCreationID = value; } 455 set { m_LoadedCreationID = value; }
456 } 456 }
457 457
458 private bool m_GodBlockSearch = false;
459 public bool GodBlockSearch
460 {
461 get { return m_GodBlockSearch; }
462 set { m_GodBlockSearch = value; }
463 }
464
465 private bool m_Casino = false;
466 public bool Casino
467 {
468 get { return m_Casino; }
469 set { m_Casino = value; }
470 }
471
472 // Telehub support
473 private bool m_TelehubEnabled = false;
474 public bool HasTelehub
475 {
476 get { return m_TelehubEnabled; }
477 set { m_TelehubEnabled = value; }
478 }
479
458 // Connected Telehub object 480 // Connected Telehub object
459 private UUID m_TelehubObject; 481 private UUID m_TelehubObject;
460 public UUID TelehubObject 482 public UUID TelehubObject