Skip to content
Merged
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
8 changes: 4 additions & 4 deletions src/Modules/CalcDefence.lua
Original file line number Diff line number Diff line change
Expand Up @@ -632,10 +632,10 @@ function calcs.defence(env, actor)
}
end
end

if actor == env.minion then
doActorLifeMana(env.minion)
doActorLifeManaReservation(env.minion)
-- Formless Inferno, Foulborn Choir of the Storm
if actor == env.minion or actor == env.player then
doActorLifeMana(actor)
doActorLifeManaReservation(actor)
end

-- Block
Expand Down
Loading