mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix life tally notifications in Relaxed
This commit is contained in:
parent
af054d4786
commit
ee1d571c08
1 changed files with 2 additions and 1 deletions
|
|
@ -618,7 +618,7 @@ boolean level_tally_t::IncrementLine(void)
|
|||
|
||||
value = &displayStat[i];
|
||||
lives_check = (
|
||||
grandprixinfo.gamespeed != KARTSPEED_EASY
|
||||
G_GametypeUsesLives()
|
||||
&& stats[i] == TALLY_STAT_TOTALRINGS // Rings also shows the Lives.
|
||||
&& livesAdded < owner->xtralife // Don't check if we've maxxed out!
|
||||
);
|
||||
|
|
@ -850,6 +850,7 @@ void level_tally_t::Tick(void)
|
|||
if (IncrementLine() == true)
|
||||
{
|
||||
if (grandprixinfo.gp == true // In GP
|
||||
&& G_GametypeUsesLives()
|
||||
&& lines >= lineCount // Finished the bonuses
|
||||
&& livesAdded < owner->xtralife // Didn't max out by other causes
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue