Skip to content

Commit f731c2b

Browse files
authored
lifeMana calcs call in CalcDefence after resist calcs updated to run for player as well (#9351)
1 parent 5e5bbc5 commit f731c2b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Modules/CalcDefence.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -632,10 +632,10 @@ function calcs.defence(env, actor)
632632
}
633633
end
634634
end
635-
636-
if actor == env.minion then
637-
doActorLifeMana(env.minion)
638-
doActorLifeManaReservation(env.minion)
635+
-- Formless Inferno, Foulborn Choir of the Storm
636+
if actor == env.minion or actor == env.player then
637+
doActorLifeMana(actor)
638+
doActorLifeManaReservation(actor)
639639
end
640640

641641
-- Block

0 commit comments

Comments
 (0)