aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/ODECharacter.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
index a2229e8..6b74e74 100644
--- a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
+++ b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
@@ -1127,6 +1127,11 @@ namespace OpenSim.Region.Physics.OdePlugin
1127 _position.Y = vec.Y; 1127 _position.Y = vec.Y;
1128 _position.Z = vec.Z; 1128 _position.Z = vec.Z;
1129 1129
1130 // I think we need to update the taintPosition too -- Diva 12/24/10
1131 m_taintPosition.X = vec.X;
1132 m_taintPosition.Y = vec.Y;
1133 m_taintPosition.Z = vec.Z;
1134
1130 // Did we move last? = zeroflag 1135 // Did we move last? = zeroflag
1131 // This helps keep us from sliding all over 1136 // This helps keep us from sliding all over
1132 1137