mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-05 15:43:08 +00:00
Actually, I messed this up
This commit is contained in:
parent
d438e3bc41
commit
fa50c1cdf4
1 changed files with 7 additions and 1 deletions
|
|
@ -9286,6 +9286,12 @@ void P_PlayerThink(player_t *player)
|
||||||
CONS_Printf(M_GetText("%s ran out of time.\n"), player_names[player-players]);
|
CONS_Printf(M_GetText("%s ran out of time.\n"), player_names[player-players]);
|
||||||
|
|
||||||
player->pflags |= PF_TIMEOVER;
|
player->pflags |= PF_TIMEOVER;
|
||||||
|
|
||||||
|
if ((player == &players[consoleplayer]
|
||||||
|
|| (splitscreen && player == &players[secondarydisplayplayer])
|
||||||
|
|| (splitscreen > 1 && player == &players[thirddisplayplayer])
|
||||||
|
|| (splitscreen > 2 && player == &players[fourthdisplayplayer]))
|
||||||
|
&& !demoplayback)
|
||||||
legitimateexit = true; // SRB2kart: losing a race is still seeing it through to the end :p
|
legitimateexit = true; // SRB2kart: losing a race is still seeing it through to the end :p
|
||||||
|
|
||||||
if (player->pflags & PF_NIGHTSMODE)
|
if (player->pflags & PF_NIGHTSMODE)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue