diff --git a/Source/Game/Movement/MotionMaster.cs b/Source/Game/Movement/MotionMaster.cs index 99b0626d2..3879b0fef 100644 --- a/Source/Game/Movement/MotionMaster.cs +++ b/Source/Game/Movement/MotionMaster.cs @@ -624,7 +624,7 @@ namespace Game.Movement public void MoveLand(uint id, Position pos) { MoveSplineInit init = new(_owner); - init.MoveTo(pos); + init.MoveTo(pos, false); init.SetAnimation(AnimType.ToGround); Add(new GenericMovementGenerator(init, MovementGeneratorType.Effect, id)); }