From e5fdab48521822c7ce6424b2c4399ecb5f162a51 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Mon, 16 Jun 2025 11:51:12 +0100 Subject: [PATCH] turn faster --- pkgs/maps/main.fnl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/maps/main.fnl b/pkgs/maps/main.fnl index 1cb7b48..ba141b1 100644 --- a/pkgs/maps/main.fnl +++ b/pkgs/maps/main.fnl @@ -325,8 +325,8 @@ label.readout { (expect= (hhmmss (+ 45 (* 60 12) (* 60 60 3))) "3:12:45") (fn turn-smoothly [from to] - (if (< (math.abs (- from to)) 10) to - (+ from (* 0.05 (- to from))))) + (if (< (math.abs (- from to)) 3) to + (+ from (* 0.3 (- to from)))))