We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9e2045 commit c408288Copy full SHA for c408288
src/main/kotlin/com/lambda/client/module/modules/movement/Flight.kt
@@ -232,8 +232,8 @@ object Flight : Module(
232
return@safeListener
233
234
val yaw = calcMoveYaw()
235
- player.motionX -= sin(yaw) * speed
236
- player.motionZ += cos(yaw) * speed
+ player.motionX = -sin(yaw) * speed
+ player.motionZ = cos(yaw) * speed
237
238
}
239
FlightMode.VANILLA -> {
0 commit comments