mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +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));
|
boolean eliminateLast = (!K_CanChangeRules(true) || (cv_karteliminatelast.value != 0));
|
||||||
|
|
||||||
if (grandprixinfo.gp && grandprixinfo.gamespeed == KARTSPEED_EASY)
|
|
||||||
eliminateLast = false;
|
|
||||||
|
|
||||||
boolean allHumansDone = true;
|
boolean allHumansDone = true;
|
||||||
//boolean allBotsDone = true;
|
//boolean allBotsDone = true;
|
||||||
|
|
||||||
|
|
@ -1701,12 +1698,14 @@ boolean P_CheckRacers(void)
|
||||||
#ifndef DEVELOP
|
#ifndef DEVELOP
|
||||||
else if (grandprixinfo.gp == true)
|
else if (grandprixinfo.gp == true)
|
||||||
{
|
{
|
||||||
// Always do this in GP
|
|
||||||
eliminateLast = true;
|
eliminateLast = true;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (grandprixinfo.gp && grandprixinfo.gamespeed == KARTSPEED_EASY)
|
||||||
|
eliminateLast = false;
|
||||||
|
|
||||||
if (eliminateLast == true && (numExiting >= numPlaying-1))
|
if (eliminateLast == true && (numExiting >= numPlaying-1))
|
||||||
{
|
{
|
||||||
// Everyone's done playing but one guy apparently.
|
// Everyone's done playing but one guy apparently.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue