From ddde841194da37d87ac998a37c834a118a6f4dd0 Mon Sep 17 00:00:00 2001 From: toaster Date: Sat, 3 Jun 2023 14:27:33 +0100 Subject: [PATCH] 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. --- src/k_podium.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_podium.c b/src/k_podium.c index 7b2a6eb0b..2502d268c 100644 --- a/src/k_podium.c +++ b/src/k_podium.c @@ -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; }