From 2b1b0134048d9e1f3d2789f0975869c3d93c81ac Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Mon, 29 Aug 2016 16:25:46 +0100 Subject: [PATCH] ubOde add a missing decimal dot :) --- OpenSim/Region/PhysicsModules/ubOde/ODEDynamics.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Region/PhysicsModules/ubOde/ODEDynamics.cs b/OpenSim/Region/PhysicsModules/ubOde/ODEDynamics.cs index 2b8e3ba0e0..fa32441624 100644 --- a/OpenSim/Region/PhysicsModules/ubOde/ODEDynamics.cs +++ b/OpenSim/Region/PhysicsModules/ubOde/ODEDynamics.cs @@ -1054,9 +1054,9 @@ namespace OpenSim.Region.PhysicsModule.ubOde float invamts = 1.0f/m_angularMotorTimescale; float tmp; - // get out x == 0 plane + // get out of x == 0 plane if(Math.Abs(dirv.X) < 0.001f) - dirv.X = 0001f; + dirv.X = 0.001f; if (Math.Abs(dirv.Z) > 0.01) {