ubOde add a missing decimal dot :)

LSLKeyTest
UbitUmarov 2016-08-29 16:25:46 +01:00
parent 155a861a4f
commit 2b1b013404
1 changed files with 2 additions and 2 deletions

View File

@ -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)
{