mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-04 04:36:21 +00:00
K_GetPodiumPosition: For consistent results, don't skip over a spectator if it's a bot.
This is not ideal and I made an entire branch about avoiding making this change... but actually, this is necessary for consistent results in K_UpdateGPRank after both normal and GPEVENT rounds, and there's nothing we can do about it.
This commit is contained in:
parent
1d619d10f2
commit
ddde841194
1 changed files with 1 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ UINT8 K_GetPodiumPosition(player_t *player)
|
|||
}
|
||||
|
||||
other = &players[i];
|
||||
if (other->spectator == true)
|
||||
if (other->bot == false && other->spectator == true)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue