Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Modules/CalcPerform.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1411,7 +1411,7 @@ function calcs.perform(env, skipEHP)
for _, value in ipairs(modDB:Tabulate("INC", { }, element .. "Damage")) do
local mod = value.mod
local modifiers = calcLib.getConvertedModTags(mod, multiplier, true)
local converted = m_floor(mod.value * multiplier)
local converted = mod.value * multiplier
if limit and converted > 0 then
local remaining = limit - totalConverted
if remaining <= 0 then
Expand Down