aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Physics/OdePlugin/OdePlugin.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
index f7f1f69..aba3667 100644
--- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
+++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
@@ -2986,9 +2986,11 @@ namespace OpenSim.Region.Physics.OdePlugin
2986 foreach (OdeCharacter actor in _characters) 2986 foreach (OdeCharacter actor in _characters)
2987 { 2987 {
2988 if (actor != null) 2988 if (actor != null)
2989 {
2989 if (actor.bad) 2990 if (actor.bad)
2990 m_log.WarnFormat("[PHYSICS]: BAD Actor {0} in _characters list was not removed?", actor.m_uuid); 2991 m_log.WarnFormat("[PHYSICS]: BAD Actor {0} in _characters list was not removed?", actor.m_uuid);
2991 actor.UpdatePositionAndVelocity(); 2992 actor.UpdatePositionAndVelocity();
2993 }
2992 } 2994 }
2993 } 2995 }
2994 2996