Skip to content

Commit

Permalink
apply strength of blood only while leeching (#7783)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerotox authored Jul 22, 2024
1 parent 326bdde commit af0dc40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Modules/ModParser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1972,7 +1972,7 @@ local specialModList = {
return { mod("DamageTaken", "MORE", -num, { type = "PerStat", stat = "MaxLifeLeechRatePercent", div = tonumber(div) }) }
end,
["(%d+)%% additional physical damage reduction for every (%d+)%% life recovery per second from leech"] = function(num, _, div)
return { mod("PhysicalDamageReduction", "BASE", num, { type = "PerStat", stat = "MaxLifeLeechRatePercent", div = tonumber(div) }) }
return { mod("PhysicalDamageReduction", "BASE", num, { type = "PerStat", stat = "MaxLifeLeechRatePercent", div = tonumber(div) }, { type = "Condition", var = "Leeching"}) }
end,
["modifiers to chance to suppress spell damage instead apply to chance to dodge spell hits at 50%% of their value"] = {
flag("ConvertSpellSuppressionToSpellDodge"),
Expand Down

0 comments on commit af0dc40

Please sign in to comment.