From 2a09d1628201e7b24623dc975cbf7d983d22001d Mon Sep 17 00:00:00 2001 From: minenice55 Date: Sat, 18 Oct 2025 15:05:16 -0400 Subject: [PATCH] don't touch non-gp methods that are in the gp class (lol) --- src/k_grandprix.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/k_grandprix.c b/src/k_grandprix.c index 70ab3acf1..9122e8104 100644 --- a/src/k_grandprix.c +++ b/src/k_grandprix.c @@ -589,7 +589,7 @@ void K_RetireBots(void) newDifficulty = 1; } - for (i = 0; i < MAXGPPLAYERS; i++) + for (i = 0; i < MAXPLAYERS; i++) { player_t *bot = NULL; @@ -608,7 +608,7 @@ void K_RetireBots(void) } } - for (i = 0; i < MAXGPPLAYERS; i++) + for (i = 0; i < MAXPLAYERS; i++) { player_t *bot = NULL; @@ -660,7 +660,7 @@ void K_FakeBotResults(player_t *bot) UINT8 numplayers = 0; UINT8 i; - for (i = 0; i < MAXGPPLAYERS; i++) + for (i = 0; i < MAXPLAYERS; i++) { if (playeringame[i] && !players[i].spectator) {