diff options
author | UbitUmarov | 2012-04-24 07:27:14 +0100 |
---|---|---|
committer | UbitUmarov | 2012-04-24 07:27:14 +0100 |
commit | f0ba6c84e487887eb438235db7010e93b4186261 (patch) | |
tree | 7f13c37a13823a076774c6a6c2b4b4c8de9d4a1b /OpenSim/Region | |
parent | let objects/avas push avas (diff) | |
download | opensim-SC_OLD-f0ba6c84e487887eb438235db7010e93b4186261.zip opensim-SC_OLD-f0ba6c84e487887eb438235db7010e93b4186261.tar.gz opensim-SC_OLD-f0ba6c84e487887eb438235db7010e93b4186261.tar.bz2 opensim-SC_OLD-f0ba6c84e487887eb438235db7010e93b4186261.tar.xz |
fix animations if sited in ground also
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 108b044..46a9469 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -755,7 +755,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
755 | m_movementAnimationUpdateCounter = 0; | 755 | m_movementAnimationUpdateCounter = 0; |
756 | if (Animator != null) | 756 | if (Animator != null) |
757 | { | 757 | { |
758 | if(ParentID == 0) // skip it if sitting | 758 | if(ParentID == 0 && !SitGround) // skip it if sitting |
759 | Animator.UpdateMovementAnimations(); | 759 | Animator.UpdateMovementAnimations(); |
760 | } | 760 | } |
761 | else | 761 | else |