From 7aab3b044836e93c4e3a396abc33404a22f07645 Mon Sep 17 00:00:00 2001 From: Unknown Date: Mon, 20 Nov 2017 05:56:38 -0500 Subject: [PATCH] let you suffer be a valid file and i guess any other file with exactly 4 notes --- src/StageStats.cpp | 2 +- src/Steps.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/StageStats.cpp b/src/StageStats.cpp index 95f9dd2597..7ddaa7aa8b 100644 --- a/src/StageStats.cpp +++ b/src/StageStats.cpp @@ -158,7 +158,7 @@ bool DetermineScoreEligibility(const PlayerStageStats &pss, const PlayerState &p return false; // cut out stuff with under 200 notes to prevent super short vibro files from being dumb - if (pss.GetTotalTaps() < 200) + if (pss.GetTotalTaps() < 200 && pss.GetTotalTaps() != 4) return false; // i'm not actually sure why this is here but if you activate this you don't deserve points anyway diff --git a/src/Steps.cpp b/src/Steps.cpp index 1a569d1678..f46a2de047 100644 --- a/src/Steps.cpp +++ b/src/Steps.cpp @@ -339,7 +339,7 @@ bool Steps::IsRecalcValid() { if (m_StepsType != StepsType_dance_single) return false; - if (m_CachedRadarValues[RadarCategory_Notes] < 200) + if (m_CachedRadarValues[RadarCategory_Notes] < 200 && m_CachedRadarValues[RadarCategory_Notes] != 4) return false; TimingData* td = GetTimingData();