From ba4b7c44238616882f4817953ca6484f0f795882 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Thu, 1 May 2008 08:41:18 +0000 Subject: [PATCH] Don't disqualify if failing for miss combo. The player should still be eligable for a high score on courses. --- stepmania/src/ScreenGameplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index ba4f9ec7fb..93d2d37f70 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -1772,7 +1772,7 @@ void ScreenGameplay::Update( float fDeltaTime ) FOREACH_EnabledPlayerNumberInfo( m_vPlayerInfo, pi ) { pi->GetPlayerStageStats()->m_bFailed |= bAllHumanHaveBigMissCombo; - pi->GetPlayerStageStats()->m_bDisqualified = true; + pi->GetPlayerStageStats()->m_bDisqualified |= bGiveUpTimerFired; // Don't disqualify if failing for miss combo. The player should still be eligable for a high score on courses. } AbortGiveUp( false );