Don't FAULT outside of Race modes

This commit is contained in:
James R 2023-02-21 23:59:56 -08:00
parent c041ff834c
commit d90351d660

View file

@ -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];