* Reverting last commit.. because it just made it worse.

0.6.8-post-fixes
Teravus Ovares (Dan Olivares) 2009-11-25 04:00:52 -05:00
parent abddb60b8d
commit a642968fd5
2 changed files with 0 additions and 9 deletions

View File

@ -200,10 +200,7 @@ namespace OpenSim.Region.Framework.Scenes.Animation
else if (move.Z < 0f) else if (move.Z < 0f)
{ {
if (actor != null && actor.IsColliding) if (actor != null && actor.IsColliding)
{
//Console.WriteLine("LAND");
return "LAND"; return "LAND";
}
else else
return "HOVER_DOWN"; return "HOVER_DOWN";
} }
@ -252,11 +249,8 @@ namespace OpenSim.Region.Framework.Scenes.Animation
float landElapsed = (float)(Environment.TickCount - m_animTickFall) / 1000f; float landElapsed = (float)(Environment.TickCount - m_animTickFall) / 1000f;
if (landElapsed <= FALL_DELAY) if (landElapsed <= FALL_DELAY)
{
m_animTickFall = 0;
return "LAND"; return "LAND";
} }
}
m_animTickFall = 0; m_animTickFall = 0;

View File

@ -1445,10 +1445,7 @@ namespace OpenSim.Region.Framework.Scenes
// nesting this check because LengthSquared() is expensive and we don't // nesting this check because LengthSquared() is expensive and we don't
// want to do it every step when flying. // want to do it every step when flying.
if ((Velocity.LengthSquared() <= LAND_VELOCITYMAG_MAX)) if ((Velocity.LengthSquared() <= LAND_VELOCITYMAG_MAX))
{
StopFlying(); StopFlying();
m_physicsActor.Flying = false;
}
} }
} }