Adjust velocity threshold for triggering flailing. Thanks to KittoFlora for researching this.

0.6.7-post-fixes
dahlia 2009-10-10 00:26:43 -07:00 committed by Justin Clark-Casey (justincc)
parent a9da2786cf
commit c2b7ef7d60
1 changed files with 1 additions and 1 deletions

View File

@ -3393,7 +3393,7 @@ namespace OpenSim.Region.Framework.Scenes
if (e == null)
return;
if ((Math.Abs(Velocity.X) > 0.05f) || (Math.Abs(Velocity.Y) > 0.05f))
if ((Math.Abs(Velocity.X) > 0.1e-9f) || (Math.Abs(Velocity.Y) > 0.1e-9f))
UpdateMovementAnimations();
if (m_invulnerable)