aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework
diff options
context:
space:
mode:
authorUbitUmarov2015-12-20 11:12:48 +0000
committerUbitUmarov2015-12-20 11:12:48 +0000
commitb31adde5fcb9803e91f1b2637395734eccc9143e (patch)
tree5d3aec04925b9114ae26586b2b1638d8dfe8dc2d /OpenSim/Region/Framework
parent do not change a attachment phatom state on crossings (diff)
downloadopensim-SC_OLD-b31adde5fcb9803e91f1b2637395734eccc9143e.zip
opensim-SC_OLD-b31adde5fcb9803e91f1b2637395734eccc9143e.tar.gz
opensim-SC_OLD-b31adde5fcb9803e91f1b2637395734eccc9143e.tar.bz2
opensim-SC_OLD-b31adde5fcb9803e91f1b2637395734eccc9143e.tar.xz
BUG FIX on avatar position updates send control
Diffstat (limited to 'OpenSim/Region/Framework')
-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