From ee1d571c08bb0a01a5c3336eacc9fd64ed5d1fff Mon Sep 17 00:00:00 2001 From: Antonio Martinez Date: Fri, 18 Jul 2025 04:23:35 -0400 Subject: [PATCH] Fix life tally notifications in Relaxed --- src/k_tally.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/k_tally.cpp b/src/k_tally.cpp index bfbc64dbb..1a8a19087 100644 --- a/src/k_tally.cpp +++ b/src/k_tally.cpp @@ -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 )