diff options
Diffstat (limited to 'OpenSim/Framework/Util.cs')
-rw-r--r-- | OpenSim/Framework/Util.cs | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index 0037f4f..9f5868b 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -80,15 +80,17 @@ namespace OpenSim.Framework | |||
80 | FoldedMask = 0x0f, | 80 | FoldedMask = 0x0f, |
81 | 81 | ||
82 | // | 82 | // |
83 | Transfer = 1 << 13, | 83 | Transfer = 1 << 13, // 0x02000 |
84 | Modify = 1 << 14, | 84 | Modify = 1 << 14, // 0x04000 |
85 | Copy = 1 << 15, | 85 | Copy = 1 << 15, // 0x08000 |
86 | Export = 1 << 16, | 86 | Export = 1 << 16, // 0x10000 |
87 | Move = 1 << 19, | 87 | Move = 1 << 19, // 0x80000 |
88 | Damage = 1 << 20, | 88 | Damage = 1 << 20, // 0x100000 does not seem to be in use |
89 | // All does not contain Export, which is special and must be | 89 | // All does not contain Export, which is special and must be |
90 | // explicitly given | 90 | // explicitly given |
91 | All = (1 << 13) | (1 << 14) | (1 << 15) | (1 << 19) | 91 | All = 0x8e000, |
92 | AllAndExport = 0x9e000, | ||
93 | AllEffective = 0x9e000 | ||
92 | } | 94 | } |
93 | 95 | ||
94 | /// <summary> | 96 | /// <summary> |