mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Slower level ups for Easy GP bots
This commit is contained in:
parent
b97c6e34c2
commit
8e6ae6179d
1 changed files with 5 additions and 1 deletions
|
|
@ -642,7 +642,11 @@ void K_IncreaseBotDifficulty(player_t *bot)
|
|||
rankNudge = 0;
|
||||
break;
|
||||
case GRADE_A:
|
||||
rankNudge = 1;
|
||||
if (grandprixinfo.gp && grandprixinfo.gamespeed == KARTSPEED_EASY)
|
||||
rankNudge = 0;
|
||||
else
|
||||
rankNudge = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
increase += rankNudge;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue