diff --git a/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java b/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java index 7963f14b..b77b8e32 100644 --- a/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java +++ b/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java @@ -327,9 +327,7 @@ public class PlayerPhysics extends EntityPhysics implements Tickab } } - // TODO: Probably wrong. Need to redo this - entity.limbAnimator.setSpeed(20 + (float)Math.cos(entity.age / 7F) - 0.5F); - entity.limbAnimator.updateLimbs(thrustScale, 1); + LimbAnimationUtil.resetToZero(entity.limbAnimator); } }