From 76a167d91b9ed473c078451e92f8bde35413ffbb Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Fri, 5 Aug 2011 18:53:12 -0500 Subject: [PATCH] off by one --- Themes/_fallback/Scripts/04 Scoring.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Themes/_fallback/Scripts/04 Scoring.lua b/Themes/_fallback/Scripts/04 Scoring.lua index 18c3cfb6e1..8c425ab149 100644 --- a/Themes/_fallback/Scripts/04 Scoring.lua +++ b/Themes/_fallback/Scripts/04 Scoring.lua @@ -214,7 +214,8 @@ r['DDR SuperNOVA 2'] = function(params, pss) if params.TapNoteScore == 'TapNoteScore_W2' or 'TapNoteScore_W3' then -- [ja] 超最終手段 pss:SetCurMaxScore( pss:GetCurMaxScore() + 1000000 ); - end; + end; + end end; pss:SetCurMaxScore(pss:GetCurMaxScore() + maxAdd);