From 8f193a4c1c6f0a3eaff7feb0918bdfbcd0eb6e49 Mon Sep 17 00:00:00 2001 From: poco0317 Date: Sun, 30 Sep 2018 16:25:04 -0500 Subject: [PATCH] Invalidate more scores using the "secret" remove mods --- src/StageStats.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/StageStats.cpp b/src/StageStats.cpp index 5f51465410..cc2e6a6331 100644 --- a/src/StageStats.cpp +++ b/src/StageStats.cpp @@ -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; }