If RLVa is off, RLVa z offset should not be enforced.

Easier diff view without space changes.
This commit is contained in:
Lirusaito
2013-02-18 17:57:40 -05:00
parent e01dd3292f
commit 4c33328906

View File

@@ -4460,9 +4460,14 @@ void LLAgent::sendAgentSetAppearance()
body_size.mV[VX] += x_off;
body_size.mV[VY] += y_off;
// [RLVa:KB] - Checked: 2010-10-11 (RLVa-1.2.0e) | Added: RLVa-1.2.0e
F32 rlvz_off = RlvSettings::getAvatarOffsetZ();
body_size.mV[VZ] += fabs(rlvz_off) ? rlvz_off : z_off;
if (rlv_handler_t::isEnabled())
{
F32 rlvz_off = RlvSettings::getAvatarOffsetZ();
body_size.mV[VZ] += fabs(rlvz_off) ? rlvz_off : z_off;
}
else
// [/RLVa:KB]
body_size.mV[VZ] += z_off;
msg->addVector3Fast(_PREHASH_Size, body_size);