Skip to content

Commit 7aab3b0

Browse files
let you suffer be a valid file
and i guess any other file with exactly 4 notes
1 parent 71b8795 commit 7aab3b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/StageStats.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ bool DetermineScoreEligibility(const PlayerStageStats &pss, const PlayerState &p
158158
return false;
159159

160160
// cut out stuff with under 200 notes to prevent super short vibro files from being dumb
161-
if (pss.GetTotalTaps() < 200)
161+
if (pss.GetTotalTaps() < 200 && pss.GetTotalTaps() != 4)
162162
return false;
163163

164164
// i'm not actually sure why this is here but if you activate this you don't deserve points anyway

src/Steps.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ bool Steps::IsRecalcValid() {
339339
if (m_StepsType != StepsType_dance_single)
340340
return false;
341341

342-
if (m_CachedRadarValues[RadarCategory_Notes] < 200)
342+
if (m_CachedRadarValues[RadarCategory_Notes] < 200 && m_CachedRadarValues[RadarCategory_Notes] != 4)
343343
return false;
344344

345345
TimingData* td = GetTimingData();

0 commit comments

Comments
 (0)