Cause attachment nibbles to be swapped in terse object updates, too.

This error may have been the root cause of the head attachment bug.
0.6.1-post-fixes
Melanie Thielker 2008-11-27 22:30:54 +00:00
parent a3a4c16294
commit d20a3c6e5a
1 changed files with 1 additions and 1 deletions

View File

@ -3168,7 +3168,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
bytes[i++] = (byte)((ID >> 8) % 256);
bytes[i++] = (byte)((ID >> 16) % 256);
bytes[i++] = (byte)((ID >> 24) % 256);
bytes[i++] = state;
bytes[i++] = (byte)(((state & 0xf0) >> 4) | ((state & 0x0f) << 4));
bytes[i++] = 0;
byte[] pb = position.GetBytes();