Skip to content

Commit

Permalink
Fix Poison stacks applying twice to Poison DPS (#8007)
Browse files Browse the repository at this point in the history
Co-authored-by: LocalIdentity <localidentity2@gmail.com>
  • Loading branch information
LocalIdentity and LocalIdentity authored Jul 29, 2024
1 parent 81af710 commit a7c3b2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Modules/CalcOffence.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4274,7 +4274,7 @@ function calcs.offence(env, actor, activeSkill)
output.TotalPoisonAverageDamage = output.PoisonDamage
output.TotalPoisonDPS = output.PoisonDPS
else
output.TotalPoisonDPS = m_min(PoisonDPSCapped * output.TotalPoisonStacks, data.misc.DotDpsCap)
output.TotalPoisonDPS = m_min(PoisonDPSCapped, data.misc.DotDpsCap)
end
if breakdown then
if output.CritPoisonDotMulti and (output.CritPoisonDotMulti ~= output.PoisonDotMulti) then
Expand Down

0 comments on commit a7c3b2f

Please sign in to comment.