diff options
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index 60ac724..46689eb 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -769,9 +769,9 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
769 | ode.drelease(world); | 769 | ode.drelease(world); |
770 | base.TriggerPhysicsBasedRestart(); | 770 | base.TriggerPhysicsBasedRestart(); |
771 | } | 771 | } |
772 | catch (AccessViolationException) | 772 | catch (Exception e) |
773 | { | 773 | { |
774 | m_log.Warn("[PHYSICS]: Unable to collide test an object"); | 774 | m_log.WarnFormat("[PHYSICS]: Unable to collide test an object: {0}", e.Message); |
775 | return; | 775 | return; |
776 | } | 776 | } |
777 | 777 | ||