aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/PermissionManager.cs
diff options
context:
space:
mode:
authorAdam Frisby2008-03-05 21:47:19 +0000
committerAdam Frisby2008-03-05 21:47:19 +0000
commit14b37533aaae69979f602e28f9cc0cd60b9585d7 (patch)
tree96299c3bbf327499e9272428ac3a131a2cda3305 /OpenSim/Region/Environment/PermissionManager.cs
parentChange SceneObjectPart.LocalID to .LocalId to be case matching (diff)
downloadopensim-SC_OLD-14b37533aaae69979f602e28f9cc0cd60b9585d7.zip
opensim-SC_OLD-14b37533aaae69979f602e28f9cc0cd60b9585d7.tar.gz
opensim-SC_OLD-14b37533aaae69979f602e28f9cc0cd60b9585d7.tar.bz2
opensim-SC_OLD-14b37533aaae69979f602e28f9cc0cd60b9585d7.tar.xz
* Removed more compiler warnings, dead code, etc.
Diffstat (limited to 'OpenSim/Region/Environment/PermissionManager.cs')
-rw-r--r--OpenSim/Region/Environment/PermissionManager.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/PermissionManager.cs b/OpenSim/Region/Environment/PermissionManager.cs
index ce6415e..171ced1 100644
--- a/OpenSim/Region/Environment/PermissionManager.cs
+++ b/OpenSim/Region/Environment/PermissionManager.cs
@@ -37,11 +37,12 @@ namespace OpenSim.Region.Environment
37 protected Scene m_scene; 37 protected Scene m_scene;
38 38
39 // These are here for testing. They will be taken out 39 // These are here for testing. They will be taken out
40 private uint PERM_ALL = (uint)2147483647; 40
41 //private uint PERM_ALL = (uint)2147483647;
41 private uint PERM_COPY = (uint)32768; 42 private uint PERM_COPY = (uint)32768;
42 private uint PERM_MODIFY = (uint)16384; 43 //private uint PERM_MODIFY = (uint)16384;
43 private uint PERM_MOVE = (uint)524288; 44 private uint PERM_MOVE = (uint)524288;
44 private uint PERM_TRANS = (uint)8192; 45 //private uint PERM_TRANS = (uint)8192;
45 private uint PERM_LOCKED = (uint)540672; 46 private uint PERM_LOCKED = (uint)540672;
46 // Bypasses the permissions engine (always returns OK) 47 // Bypasses the permissions engine (always returns OK)
47 // disable in any production environment 48 // disable in any production environment