From 0d176a0129f139a0d3f350ee49fd92a254cbe42d Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 25 Apr 2026 04:29:59 +0200 Subject: [PATCH] auto-git: [change] src/runtime-three/player-locomotion.ts --- src/runtime-three/player-locomotion.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime-three/player-locomotion.ts b/src/runtime-three/player-locomotion.ts index 4f438cc4..cdc6f485 100644 --- a/src/runtime-three/player-locomotion.ts +++ b/src/runtime-three/player-locomotion.ts @@ -502,7 +502,7 @@ export function stepPlayerLocomotion( const canUseImmediateGrounding = options.previousLocomotionState === undefined || options.previousLocomotionState.grounded || - options.verticalVelocity <= VERTICAL_ASCENT_EPSILON; + Math.abs(options.verticalVelocity) <= VERTICAL_ASCENT_EPSILON; const currentlyGrounded = currentGroundProbe.grounded && !ascendingFromPreviousFrame &&