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

melanie
UbitUmarov 2017-01-15 13:43:54 +00:00
parent 6eaa8948a6
commit e475e65828
1 changed files with 3 additions and 3 deletions

View File

@ -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,