diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index 0c94fb6..ba289f7 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -2986,7 +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 | { | ||
2990 | if (actor.bad) | ||
2991 | m_log.WarnFormat("[PHYSICS]: BAD Actor {0} in _characters list was not removed?", actor.m_uuid); | ||
2989 | actor.UpdatePositionAndVelocity(); | 2992 | actor.UpdatePositionAndVelocity(); |
2993 | } | ||
2990 | } | 2994 | } |
2991 | } | 2995 | } |
2992 | 2996 | ||