aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDiva Canto2009-10-19 15:03:55 -0700
committerDiva Canto2009-10-19 15:03:55 -0700
commit590d91e57251cc35b3ce15bb60784249a1c3b15c (patch)
tree7781f3471629f0babceb734cfdd8859a88c3c587
parentMore instrumentation in physics. (diff)
downloadopensim-SC_OLD-590d91e57251cc35b3ce15bb60784249a1c3b15c.zip
opensim-SC_OLD-590d91e57251cc35b3ce15bb60784249a1c3b15c.tar.gz
opensim-SC_OLD-590d91e57251cc35b3ce15bb60784249a1c3b15c.tar.bz2
opensim-SC_OLD-590d91e57251cc35b3ce15bb60784249a1c3b15c.tar.xz
Forgot {} on last commit.
-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