aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/EstateSettings.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-08-01 21:08:00 +0000
committerMelanie Thielker2008-08-01 21:08:00 +0000
commit12c5bfa3e0f42232035d74b3768ea98211dc5e18 (patch)
treec7dbdacf918345872ff633d282951b40797e04ff /OpenSim/Framework/EstateSettings.cs
parent* minor: add to the thread tracker the thread with which the thread tracker t... (diff)
downloadopensim-SC_OLD-12c5bfa3e0f42232035d74b3768ea98211dc5e18.zip
opensim-SC_OLD-12c5bfa3e0f42232035d74b3768ea98211dc5e18.tar.gz
opensim-SC_OLD-12c5bfa3e0f42232035d74b3768ea98211dc5e18.tar.bz2
opensim-SC_OLD-12c5bfa3e0f42232035d74b3768ea98211dc5e18.tar.xz
Estate series, patch 9 (#9157)
Adds the new access semantics and the new flag (allow only age verified) Plumbs in the abuse email address from sim to viewer. The other way around, libomv appears to be lacking support for the data field in the packet. Includes a migration, run prebuild!
Diffstat (limited to 'OpenSim/Framework/EstateSettings.cs')
-rw-r--r--OpenSim/Framework/EstateSettings.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/EstateSettings.cs b/OpenSim/Framework/EstateSettings.cs
index 31655f4..8a00f9d 100644
--- a/OpenSim/Framework/EstateSettings.cs
+++ b/OpenSim/Framework/EstateSettings.cs
@@ -231,6 +231,14 @@ namespace OpenSim.Framework
231 set { m_EstateOwner = value; } 231 set { m_EstateOwner = value; }
232 } 232 }
233 233
234 private bool m_DenyMinors = false;
235
236 public bool DenyMinors
237 {
238 get { return m_DenyMinors; }
239 set { m_DenyMinors = value; }
240 }
241
234 // All those lists... 242 // All those lists...
235 // 243 //
236 private List<LLUUID> l_EstateManagers = new List<LLUUID>(); 244 private List<LLUUID> l_EstateManagers = new List<LLUUID>();