mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-26 04:51:43 +00:00
Don't show minimap icons for players who have finished the race
This commit is contained in:
parent
3b6a2fed77
commit
636553d1a2
1 changed files with 2 additions and 2 deletions
|
|
@ -10559,7 +10559,7 @@ static void K_drawKartMinimap(void)
|
|||
g = g->next;
|
||||
}
|
||||
|
||||
if (!stplyr->mo || stplyr->spectator) // do we need the latter..?
|
||||
if (!stplyr->mo || stplyr->spectator || stplyr->exiting)
|
||||
return;
|
||||
|
||||
localplayers[numlocalplayers] = stplyr-players;
|
||||
|
|
@ -10571,7 +10571,7 @@ static void K_drawKartMinimap(void)
|
|||
{
|
||||
if (!playeringame[i])
|
||||
continue;
|
||||
if (!players[i].mo || players[i].spectator)
|
||||
if (!players[i].mo || players[i].spectator || players[i].exiting)
|
||||
continue;
|
||||
|
||||
if (i != displayplayers[0] || r_splitscreen)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue