diff options
author | UbitUmarov | 2017-01-15 13:43:54 +0000 |
---|---|---|
committer | UbitUmarov | 2017-01-15 13:43:54 +0000 |
commit | e475e658282acc1683713ba78ec6e163c5be240e (patch) | |
tree | fb20c18236cf1395b04f2f28adcefdfceb9c5180 /OpenSim | |
parent | bad move.. revert (diff) | |
download | opensim-SC-e475e658282acc1683713ba78ec6e163c5be240e.zip opensim-SC-e475e658282acc1683713ba78ec6e163c5be240e.tar.gz opensim-SC-e475e658282acc1683713ba78ec6e163c5be240e.tar.bz2 opensim-SC-e475e658282acc1683713ba78ec6e163c5be240e.tar.xz |
use of PermissionMask Bit3 for slam was a recent mistake, so make it only bit4 and move folded export to its more natural place as bit3
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Util.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index 31c2df7..2deb1fb 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -66,10 +66,10 @@ namespace OpenSim.Framework | |||
66 | FoldedTransfer = 1, | 66 | FoldedTransfer = 1, |
67 | FoldedModify = 1 << 1, | 67 | FoldedModify = 1 << 1, |
68 | FoldedCopy = 1 << 2, | 68 | FoldedCopy = 1 << 2, |
69 | Slam = (1 << 3) | (1 << 4), | 69 | FoldedExport = 1 << 3, |
70 | FoldedExport = 1 << 5, | 70 | Slam = (1 << 4), |
71 | 71 | ||
72 | FoldedMask = 0x027, | 72 | FoldedMask = 0x0f, |
73 | 73 | ||
74 | // | 74 | // |
75 | Transfer = 1 << 13, | 75 | Transfer = 1 << 13, |