mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'dont-fault-outside-of-race' into 'master'
Don't FAULT outside of Race modes See merge request KartKrew/Kart!959
This commit is contained in:
commit
96862a2a6f
1 changed files with 1 additions and 1 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue