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
parent
6eaa8948a6
commit
e475e65828
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue