diff options
author | prep@lindenlab.com <prep@lindenlab.com> | 2013-05-10 13:59:24 -0500 |
---|---|---|
committer | prep@lindenlab.com <prep@lindenlab.com> | 2013-05-10 13:59:24 -0500 |
commit | c542c275ac2b54305d693b6f560a8397aeb2fffc (patch) | |
tree | 9eb7ae6d474997cb9df0aa1f7d27fd15e6383fdd | |
parent | 3f1d360a04c4e4d8f07b7e93cd926961ae379430 (diff) | |
parent | cd9acddf09ba80a3a2249194256217882c71bf7c (diff) |
merge
-rwxr-xr-x | indra/newview/llagent.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index 883200c0f5..21625815b9 100755 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -4337,7 +4337,9 @@ void LLAgent::sendAgentSetAppearance() // to compensate for the COLLISION_TOLERANCE ugliness we will have // to tweak this number again const LLVector3 body_size = gAgentAvatarp->mBodySize + gAgentAvatarp->mAvatarOffset; - msg->addVector3Fast(_PREHASH_Size, body_size); + msg->addVector3Fast(_PREHASH_Size, body_size); + + LL_DEBUGS("Avatar") << gAgentAvatarp->avString() << "Sent AgentSetAppearance with height: " << body_size.mV[VZ] << " base: " << gAgentAvatarp->mBodySize.mV[VZ] << " hover: " << gAgentAvatarp->mAvatarOffset.mV[VZ] << LL_ENDL; // To guard against out of order packets // Note: always start by sending 1. This resets the server's count. 0 on the server means "uninitialized" |