diff options
author | UbitUmarov | 2015-12-20 11:12:48 +0000 |
---|---|---|
committer | UbitUmarov | 2015-12-20 11:12:48 +0000 |
commit | b31adde5fcb9803e91f1b2637395734eccc9143e (patch) | |
tree | 5d3aec04925b9114ae26586b2b1638d8dfe8dc2d /OpenSim/Region | |
parent | do not change a attachment phatom state on crossings (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 4 |
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 | ||