diff options
author | Melanie Thielker | 2008-11-27 22:30:54 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-11-27 22:30:54 +0000 |
commit | d20a3c6e5a8828bb7fba4d7b8cddefdd4ad86cc4 (patch) | |
tree | 7f69c2e7b7e2920dc490b8d622ff30e378f10961 /OpenSim/Region/ClientStack | |
parent | * minor: rename m_parent to m_commsManager to make it a little clearer what i... (diff) | |
download | opensim-SC_OLD-d20a3c6e5a8828bb7fba4d7b8cddefdd4ad86cc4.zip opensim-SC_OLD-d20a3c6e5a8828bb7fba4d7b8cddefdd4ad86cc4.tar.gz opensim-SC_OLD-d20a3c6e5a8828bb7fba4d7b8cddefdd4ad86cc4.tar.bz2 opensim-SC_OLD-d20a3c6e5a8828bb7fba4d7b8cddefdd4ad86cc4.tar.xz |
Cause attachment nibbles to be swapped in terse object updates, too.
This error may have been the root cause of the head attachment bug.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 7dac5de..94040ca 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -3168,7 +3168,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
3168 | bytes[i++] = (byte)((ID >> 8) % 256); | 3168 | bytes[i++] = (byte)((ID >> 8) % 256); |
3169 | bytes[i++] = (byte)((ID >> 16) % 256); | 3169 | bytes[i++] = (byte)((ID >> 16) % 256); |
3170 | bytes[i++] = (byte)((ID >> 24) % 256); | 3170 | bytes[i++] = (byte)((ID >> 24) % 256); |
3171 | bytes[i++] = state; | 3171 | bytes[i++] = (byte)(((state & 0xf0) >> 4) | ((state & 0x0f) << 4)); |
3172 | bytes[i++] = 0; | 3172 | bytes[i++] = 0; |
3173 | 3173 | ||
3174 | byte[] pb = position.GetBytes(); | 3174 | byte[] pb = position.GetBytes(); |