From cbc7368929f0a02e657ecd65fb1c3a4047656f64 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Fri, 1 May 2026 16:49:45 +0200 Subject: [PATCH] auto-git: [change] src/app/App.tsx --- src/app/App.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 6acf4d1f..a5bc5922 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -2009,6 +2009,8 @@ function formatRunnerLocomotionMode( return "Diving"; case "climbing": return "Climbing"; + case "ledgeGrab": + return "Ledge Grab"; default: return "n/a"; } @@ -2145,6 +2147,10 @@ function formatRunnerAnimationHook( return `climb ${animationHook.movementAmount.toFixed(2)}`; } + if (animationHook.locomotionMode === "ledgeGrab") { + return "ledge grab"; + } + return animationHook.moving ? `${animationHook.gait} ${animationHook.movementAmount.toFixed(2)}` : "idle";