dear wolfman: if you are going to do this, realize that you are going to piss people off. thanks. -freem

This commit is contained in:
AJ Kelly
2011-08-05 16:15:42 -05:00
parent 154aeff951
commit f64e4a1fcc
+3 -2
View File
@@ -200,13 +200,14 @@ r['DDR SuperNOVA 2'] = function(params, pss)
}; };
setmetatable(multLookup, ZeroIfNotFound); setmetatable(multLookup, ZeroIfNotFound);
local radarValues = GetDirectRadar(params.Player); local radarValues = GetDirectRadar(params.Player);
local totalItems = GetTotalItems(radarValues); local totalItems = GetTotalItems(radarValues) - radarValues:GetValue('RadarCategory_Lifts');
-- handle holds -- handle holds
local maxAdd = 0; local maxAdd = 0;
if params.HoldNoteScore == 'HoldNoteScore_Held' then if params.HoldNoteScore == 'HoldNoteScore_Held' then
maxAdd = 10; maxAdd = 10;
elseif params.HoldNoteScore == 'HoldNoteScore_LetGo' then else
if params.HoldNoteScore == 'HoldNoteScore_LetGo' then
maxAdd = 0; maxAdd = 0;
else else
maxAdd = multLookup[params.TapNoteScore]; maxAdd = multLookup[params.TapNoteScore];