diff --git a/src/k_tally.cpp b/src/k_tally.cpp index b65e7c6bb..f9af6d972 100644 --- a/src/k_tally.cpp +++ b/src/k_tally.cpp @@ -551,9 +551,11 @@ void level_tally_t::Init(player_t *player) done = (player->spectator == true || player->bot == true); - if (specialstageinfo.valid == true && (player->pflags & PF_NOCONTEST) == PF_NOCONTEST) + if (specialstageinfo.valid == true && (player->pflags & PF_NOCONTEST) == PF_NOCONTEST && + (G_GametypeUsesLives() && player->lives <= 0) == false) { // No tally when losing special stages + // Except when GAME OVER state = TALLY_ST_IGNORE; delay = 0; }