From 2b84bc6b14b5b93db6c2e99484450b871d003d5e Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 11 Apr 2026 22:12:44 +0200 Subject: [PATCH] Remove jump buffer reset on jump press --- src/runtime-three/player-locomotion.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/runtime-three/player-locomotion.ts b/src/runtime-three/player-locomotion.ts index 02b61901..0658e739 100644 --- a/src/runtime-three/player-locomotion.ts +++ b/src/runtime-three/player-locomotion.ts @@ -330,10 +330,6 @@ export function stepPlayerLocomotion( ); let jumpHoldRemainingMs = Math.max(0, options.jumpHoldRemainingMs - dtMs); - if (options.movement.capabilities.jump && jumpJustPressed) { - jumpBufferRemainingMs = options.movement.jump.bufferMs; - } - let crouched = options.crouched && canCrouch; if (canCrouch) {