From e475e658282acc1683713ba78ec6e163c5be240e Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sun, 15 Jan 2017 13:43:54 +0000 Subject: [PATCH] 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 --- OpenSim/Framework/Util.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index 31c2df7ee7..2deb1fb01f 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs @@ -66,10 +66,10 @@ namespace OpenSim.Framework FoldedTransfer = 1, FoldedModify = 1 << 1, FoldedCopy = 1 << 2, - Slam = (1 << 3) | (1 << 4), - FoldedExport = 1 << 5, + FoldedExport = 1 << 3, + Slam = (1 << 4), - FoldedMask = 0x027, + FoldedMask = 0x0f, // Transfer = 1 << 13,