From dc6308897761e86c30ea9a8c642b703ab85ee817 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Wed, 17 Dec 2025 21:39:48 -0500 Subject: [PATCH] use kart radius clamp value --- src/p_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_map.c b/src/p_map.c index fe06fc5cb..e15912093 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -2697,7 +2697,7 @@ increment_move radius = max(radius, mapobjectscale); // And Big Large (tm) movements can skip over slopes. - radius = min(radius, 8*mapobjectscale); + radius = min(radius, 16*mapobjectscale); // (This whole "step" system is flawed; it was OK before, but the addition of slopes has // exposed the problems with doing it like this. The right thing to do would be to use