mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-05 06:22:51 +00:00
Don't affect GP status if retrying
Fixes KartKrew/Kart#997, and then some. The bot difficulty was also being affected by retrying after completing a race, so that's prevented too.
This commit is contained in:
parent
22e2b97171
commit
9fb0efae3c
1 changed files with 1 additions and 1 deletions
|
|
@ -4249,7 +4249,7 @@ static void G_DoCompleted(void)
|
|||
}
|
||||
}
|
||||
|
||||
if (grandprixinfo.gp == true && grandprixinfo.wonround == true && player->exiting)
|
||||
if (grandprixinfo.gp == true && grandprixinfo.wonround == true && player->exiting && !retrying)
|
||||
{
|
||||
if (player->bot == true)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue