aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorDiva Canto2009-10-19 14:48:17 -0700
committerDiva Canto2009-10-19 14:48:17 -0700
commit2dd8a6beaca5a53039d2068db1cebfd7fd095943 (patch)
tree10d60ed55f7415d1a5976a7347b7ee832590669f /OpenSim
parentMerge branch 'prioritization' of ssh://opensimulator.org/var/git/opensim into... (diff)
downloadopensim-SC_OLD-2dd8a6beaca5a53039d2068db1cebfd7fd095943.zip
opensim-SC_OLD-2dd8a6beaca5a53039d2068db1cebfd7fd095943.tar.gz
opensim-SC_OLD-2dd8a6beaca5a53039d2068db1cebfd7fd095943.tar.bz2
opensim-SC_OLD-2dd8a6beaca5a53039d2068db1cebfd7fd095943.tar.xz
More instrumentation in physics.
Diffstat (limited to 'OpenSim')
-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 7187fbe..f7f1f69 100644
--- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
+++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
@@ -2986,6 +2986,8 @@ 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 if (actor.bad)
2990 m_log.WarnFormat("[PHYSICS]: BAD Actor {0} in _characters list was not removed?", actor.m_uuid);
2989 actor.UpdatePositionAndVelocity(); 2991 actor.UpdatePositionAndVelocity();
2990 } 2992 }
2991 } 2993 }