aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index 6a4675e..56fd606 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -3473,10 +3473,10 @@ namespace OpenSim.Region.Framework.Scenes
3473 if (Appearance.AvatarSize != m_lastSize && !IsLoggingIn) 3473 if (Appearance.AvatarSize != m_lastSize && !IsLoggingIn)
3474 SendAvatarDataToAllAgents(); 3474 SendAvatarDataToAllAgents();
3475 3475
3476 if (!IsSatOnObject || 3476 if (!IsSatOnObject && (
3477 !Rotation.ApproxEquals(m_lastRotation, ROTATION_TOLERANCE) || 3477 !Rotation.ApproxEquals(m_lastRotation, ROTATION_TOLERANCE) ||
3478 !Velocity.ApproxEquals(m_lastVelocity, VELOCITY_TOLERANCE) || 3478 !Velocity.ApproxEquals(m_lastVelocity, VELOCITY_TOLERANCE) ||
3479 !m_pos.ApproxEquals(m_lastPosition, POSITION_TOLERANCE)) 3479 !m_pos.ApproxEquals(m_lastPosition, POSITION_TOLERANCE)))
3480 { 3480 {
3481 SendTerseUpdateToAllClients(); 3481 SendTerseUpdateToAllClients();
3482 3482