make the Slam bit actually be the two previus used ones, to try to minimize compatibilty issues

melanie
UbitUmarov 2017-01-14 16:33:51 +00:00
parent fb86e41561
commit 1ff831c45b
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ namespace OpenSim.Framework
FoldedTransfer = 1,
FoldedModify = 1 << 1,
FoldedCopy = 1 << 2,
FoldedExport = 1 << 3,
Slam = 1 << 4,
Slam = (1 << 3) | (1 << 4),
FoldedExport = 1 << 5,
FoldedMask = 0x0f,