From c590a42e6d0d7f60620810039d0c5e9669514733 Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Tue, 5 Mar 2024 20:02:11 -0700 Subject: [PATCH] Hard GP continue delevel 2 -> 1 --- src/g_game.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/g_game.c b/src/g_game.c index 69699b24f..c860b24f0 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -1804,7 +1804,12 @@ void G_Ticker(boolean run) { if (players[i].bot == true && grandprixinfo.gp == true && grandprixinfo.masterbots == false) { - const UINT8 bot_level_decrease = (grandprixinfo.gamespeed == KARTSPEED_EASY) ? 3 : 2; + UINT8 bot_level_decrease = 2; + + if (grandprixinfo.gamespeed == KARTSPEED_EASY) + bot_level_decrease = 3; + else if (grandprixinfo.gamespeed == KARTSPEED_HARD) + bot_level_decrease = 1; if (players[i].botvars.difficulty <= bot_level_decrease) {