Skip to content

Commit

Permalink
Invalidate more scores using the "secret" remove mods
Browse files Browse the repository at this point in the history
  • Loading branch information
poco0317 authored Sep 30, 2018
1 parent 3dcf855 commit 8f193a4
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/StageStats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,21 @@ DetermineScoreEligibility(const PlayerStageStats& pss, const PlayerState& ps)

if (mods.find("Backwards") != mods.npos)
return false;

if (mods.find("Little") != mods.npos)
return false;

if (mods.find("NoJumps") != mods.npos)
return false;

if (mods.find("NoHands") != mods.npos)
return false;

if (mods.find("NoQuads") != mods.npos)
return false;

if (mods.find("NoStretch") != mods.npos)
return false;

return true;
}
Expand Down

0 comments on commit 8f193a4

Please sign in to comment.