Skip to content

Commit

Permalink
Fix DR options being ignored due to missing sumType (Fixes #98)
Browse files Browse the repository at this point in the history
  • Loading branch information
raethkcj committed Sep 22, 2022
1 parent 4de2b16 commit d8ac32c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RatingBuster.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3376,7 +3376,7 @@ function RatingBuster:StatSummary(tooltip, name, link)
if tpSupport and ((calcData.name == "TANKPOINTS") or (calcData.name == "TOTALREDUCTION")) and (statDataType == "sum") then
entry[statDataType] = nil
else
entry[statDataType] = calcData.func(statTable)
entry[statDataType] = calcData.func(statTable, statDataType, link)
end
end
tinsert(summary, entry)
Expand Down

0 comments on commit d8ac32c

Please sign in to comment.