From ca68ddd35bf5352ed37b4135aec248024b77688e Mon Sep 17 00:00:00 2001 From: Ashnal Date: Sun, 5 Oct 2025 21:59:43 -0400 Subject: [PATCH] fix incorrect dereference --- 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 687bb82fc..c572a4eea 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -14391,7 +14391,7 @@ void K_DappleEmployment(player_t *player) } K_StumblePlayer(player); - player->mo->preventfailsafe = TICRATE*3; + player->preventfailsafe = TICRATE*3; S_StopSoundByID(player->mo, sfx_s3k9b); // Avoid stumble crunch noise }