Skip to content

Commit

Permalink
let you suffer be a valid file
Browse files Browse the repository at this point in the history
and i guess any other file with exactly 4 notes
  • Loading branch information
MinaciousGrace committed Nov 22, 2017
1 parent 71b8795 commit 7aab3b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/StageStats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Steps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 7aab3b0

Please sign in to comment.