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:
toaster 2023-06-03 14:27:33 +01:00
parent 1d619d10f2
commit ddde841194

View file

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