From 86d11e8f1805408a21e6442d2c26d8ad0af17948 Mon Sep 17 00:00:00 2001 From: Flameshadowxeroshin Date: Sat, 16 Jun 2012 18:33:04 +0000 Subject: [PATCH] Filter out mines for old scoring modes. --- Themes/_fallback/Scripts/05 NewScoringFrontend.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Themes/_fallback/Scripts/05 NewScoringFrontend.lua b/Themes/_fallback/Scripts/05 NewScoringFrontend.lua index c3a5ec8e0d..d0815c0e82 100644 --- a/Themes/_fallback/Scripts/05 NewScoringFrontend.lua +++ b/Themes/_fallback/Scripts/05 NewScoringFrontend.lua @@ -139,6 +139,8 @@ end local OldCallShimMt={ __index=function(t,k,v) return function(judg, _) + --STUPID: don't bother if it's a mine. + if judg.TapNoteScore:find("Mine") then return end --sacrifice some efficiency for reliability InitScoreKeepers(ArgsIfPlayerJoinedOrNil(v)) UpdateScoreKeepers(judg)