From 1ff831c45b292840e572b74153986218a590e739 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sat, 14 Jan 2017 16:33:51 +0000 Subject: [PATCH] make the Slam bit actually be the two previus used ones, to try to minimize compatibilty issues --- OpenSim/Framework/Util.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index 2ede363f7b..746814dcb8 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs @@ -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,