diff --git a/src/main/kotlin/com/lambda/client/module/modules/movement/Flight.kt b/src/main/kotlin/com/lambda/client/module/modules/movement/Flight.kt index 3d5802147..83818de2e 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/movement/Flight.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/movement/Flight.kt @@ -232,8 +232,8 @@ object Flight : Module( return@safeListener val yaw = calcMoveYaw() - player.motionX -= sin(yaw) * speed - player.motionZ += cos(yaw) * speed + player.motionX = -sin(yaw) * speed + player.motionZ = cos(yaw) * speed } FlightMode.VANILLA -> {