mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-30 06:51:50 +00:00
Prevent eliminateLast in Relaxed even outside of DEVELOP
This commit is contained in:
parent
f7541921be
commit
85d074f311
1 changed files with 3 additions and 4 deletions
|
|
@ -1636,9 +1636,6 @@ boolean P_CheckRacers(void)
|
|||
|
||||
boolean eliminateLast = (!K_CanChangeRules(true) || (cv_karteliminatelast.value != 0));
|
||||
|
||||
if (grandprixinfo.gp && grandprixinfo.gamespeed == KARTSPEED_EASY)
|
||||
eliminateLast = false;
|
||||
|
||||
boolean allHumansDone = true;
|
||||
//boolean allBotsDone = true;
|
||||
|
||||
|
|
@ -1701,12 +1698,14 @@ boolean P_CheckRacers(void)
|
|||
#ifndef DEVELOP
|
||||
else if (grandprixinfo.gp == true)
|
||||
{
|
||||
// Always do this in GP
|
||||
eliminateLast = true;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
if (grandprixinfo.gp && grandprixinfo.gamespeed == KARTSPEED_EASY)
|
||||
eliminateLast = false;
|
||||
|
||||
if (eliminateLast == true && (numExiting >= numPlaying-1))
|
||||
{
|
||||
// Everyone's done playing but one guy apparently.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue