From a28dd7543dd18f07a6a462d4d062224ea38f3b25 Mon Sep 17 00:00:00 2001 From: osiu97 Date: Wed, 8 Jul 2026 21:26:08 +0200 Subject: [PATCH] fix hesitant --- web/js/motion-effects.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/js/motion-effects.js b/web/js/motion-effects.js index 6058707..c615eaf 100644 --- a/web/js/motion-effects.js +++ b/web/js/motion-effects.js @@ -61,6 +61,9 @@ export const MotionEffects = { getQueueAction(mode, maxDist, blendThreshold) { if (mode === 'jumpy') { if (maxDist <= 5) return { action: 'wait', delay: 100 }; + } else if (mode === 'hesitant') { + // Lower blend threshold prevents blasting all speed-change waypoints instantly + if (maxDist <= 30) return { action: 'blend' }; } else { if (maxDist <= blendThreshold) return { action: 'blend' }; }