From d90351d6604b1b9bb62f462e2a22b87707d8e323 Mon Sep 17 00:00:00 2001 From: James R Date: Tue, 21 Feb 2023 23:59:56 -0800 Subject: [PATCH] Don't FAULT outside of Race modes --- src/k_respawn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_respawn.c b/src/k_respawn.c index 98661ad35..0997c2b40 100644 --- a/src/k_respawn.c +++ b/src/k_respawn.c @@ -148,7 +148,7 @@ void K_DoIngameRespawn(player_t *player) } // FAULT - if (leveltime < starttime) + if ((gametyperules & GTR_CIRCUIT) && leveltime < starttime) { if (!(mapheaderinfo[gamemap-1]->levelflags & LF_SECTIONRACE)) player->respawn.wp = K_GetFinishLineWaypoint()->prevwaypoints[0];