Fixed wrong isCrouching condition

This commit is contained in:
DBotThePony 2025-01-01 17:01:22 +07:00
parent f60ad2a712
commit 826419b545
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -613,7 +613,7 @@ class ActorMovementController() : MovementController() {
if (isGroundMovement) {
this.isRunning = isRunning && controlMove != null
this.isWalking = !isRunning && controlMove != null
this.isCrouching = controlCrouch && controlMove != null
this.isCrouching = controlCrouch && controlMove == null
}
isFlying = controlFly != null