From f64e4a1fcc1b5fe323e14f2de79f75918628a2b7 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Fri, 5 Aug 2011 16:15:42 -0500 Subject: [PATCH] dear wolfman: if you are going to do this, realize that you are going to piss people off. thanks. -freem --- Themes/_fallback/Scripts/04 Scoring.lua | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Themes/_fallback/Scripts/04 Scoring.lua b/Themes/_fallback/Scripts/04 Scoring.lua index 5d47fbd89a..18c3cfb6e1 100644 --- a/Themes/_fallback/Scripts/04 Scoring.lua +++ b/Themes/_fallback/Scripts/04 Scoring.lua @@ -200,19 +200,20 @@ r['DDR SuperNOVA 2'] = function(params, pss) }; setmetatable(multLookup, ZeroIfNotFound); local radarValues = GetDirectRadar(params.Player); - local totalItems = GetTotalItems(radarValues); + local totalItems = GetTotalItems(radarValues) - radarValues:GetValue('RadarCategory_Lifts'); -- handle holds local maxAdd = 0; if params.HoldNoteScore == 'HoldNoteScore_Held' then maxAdd = 10; - elseif params.HoldNoteScore == 'HoldNoteScore_LetGo' then - maxAdd = 0; else - maxAdd = multLookup[params.TapNoteScore]; - if params.TapNoteScore == 'TapNoteScore_W2' or 'TapNoteScore_W3' then - -- [ja] 超最終手段 - pss:SetCurMaxScore( pss:GetCurMaxScore() + 1000000 ); + if params.HoldNoteScore == 'HoldNoteScore_LetGo' then + maxAdd = 0; + else + maxAdd = multLookup[params.TapNoteScore]; + if params.TapNoteScore == 'TapNoteScore_W2' or 'TapNoteScore_W3' then + -- [ja] 超最終手段 + pss:SetCurMaxScore( pss:GetCurMaxScore() + 1000000 ); end; end; pss:SetCurMaxScore(pss:GetCurMaxScore() + maxAdd);