From 7ac5a45979465cfb18940edab557549a4ee2842c Mon Sep 17 00:00:00 2001 From: Antonio Martinez Date: Wed, 22 Oct 2025 17:52:13 -0400 Subject: [PATCH] Lower tripwire unstuck threshold (faster) --- src/k_kart.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/k_kart.c b/src/k_kart.c index 3049c9ccc..10e7c1ce5 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -11125,7 +11125,9 @@ void K_KartPlayerThink(player_t *player, ticcmd_t *cmd) if (player->preventfailsafe) player->preventfailsafe--; - if (player->tripwireUnstuck > 150) + UINT8 unstuckthreshold = (onground) ? 80 : 40; + + if (player->tripwireUnstuck > unstuckthreshold) { player->tripwireUnstuck = 0; K_DoIngameRespawn(player);