aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-07-30 03:56:29 +0100
committerJustin Clark-Casey (justincc)2011-07-30 03:56:29 +0100
commit49a3740ee9983ffa99a81924aa01071f4dc13a6b (patch)
treecf68a42cd8c7e43505c7723e652744e101d7b252 /OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
parentminor: remove some mono compiler warnings (diff)
downloadopensim-SC_OLD-49a3740ee9983ffa99a81924aa01071f4dc13a6b.zip
opensim-SC_OLD-49a3740ee9983ffa99a81924aa01071f4dc13a6b.tar.gz
opensim-SC_OLD-49a3740ee9983ffa99a81924aa01071f4dc13a6b.tar.bz2
opensim-SC_OLD-49a3740ee9983ffa99a81924aa01071f4dc13a6b.tar.xz
minor: remove mono compiler warnings, some code spacing adjustments
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/ODECharacter.cs')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/ODECharacter.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
index 7766691..4f461ad 100644
--- a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
+++ b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
@@ -1229,11 +1229,14 @@ namespace OpenSim.Region.Physics.OdePlugin
1229 m_requestedUpdateFrequency = 0; 1229 m_requestedUpdateFrequency = 0;
1230 m_eventsubscription = 0; 1230 m_eventsubscription = 0;
1231 } 1231 }
1232 1232
1233 public void AddCollisionEvent(uint CollidedWith, ContactPoint contact) 1233 public void AddCollisionEvent(uint CollidedWith, ContactPoint contact)
1234 { 1234 {
1235 if (m_eventsubscription > 0) 1235 if (m_eventsubscription > 0)
1236 { 1236 {
1237// m_log.DebugFormat(
1238// "[PHYSICS]: Adding collision event for {0}, collidedWith {1}, contact {2}", "", CollidedWith, contact);
1239
1237 CollisionEventsThisFrame.addCollider(CollidedWith, contact); 1240 CollisionEventsThisFrame.addCollider(CollidedWith, contact);
1238 } 1241 }
1239 } 1242 }