mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix unintended life loss in GP when finishing a race with -20 rings.
This commit is contained in:
parent
f984ecc5d7
commit
fcb7d38dce
1 changed files with 1 additions and 1 deletions
|
|
@ -1330,7 +1330,7 @@ void P_DoPlayerExit(player_t *player, pflags_t flags)
|
|||
|
||||
if (grandprixinfo.gp == true
|
||||
&& grandprixinfo.eventmode != GPEVENT_SPECIAL
|
||||
&& player->bot == false && losing == false)
|
||||
&& player->bot == false && losing == false && player->hudrings > 0)
|
||||
{
|
||||
const UINT8 lifethreshold = 20;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue