From 1506e958c1c13674a5ae54f937e1bfb107e91c45 Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Sat, 15 Apr 2023 16:26:01 -0700 Subject: [PATCH] Don't check wipeoutslow in flashtic blocker, it might be unset shortly after --- src/k_kart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_kart.c b/src/k_kart.c index c9a66d8d6..f04d27789 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -7726,7 +7726,7 @@ void K_KartPlayerThink(player_t *player, ticcmd_t *cmd) } // Make ABSOLUTELY SURE that your flashing tics don't get set WHILE you're still in hit animations. - if (player->spinouttimer != 0 || player->wipeoutslow != 0) + if (player->spinouttimer != 0) { if (( player->spinouttype & KSPIN_IFRAMES ) == 0) player->flashing = 0;