Skip to content

Commit 381f2a3

Browse files
authored
Fix low life defence mods not applying sometimes when using Starkonja's, Rise of the Pheonix and Coward Legacy (#1704)
* Update CalcDefence.lua * Update CalcDefence.lua CalcDefences * Revert "Update CalcDefence.lua" This reverts commit 45398e6.
1 parent 3dd53c3 commit 381f2a3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Modules/CalcDefence.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -949,9 +949,9 @@ function calcs.defence(env, actor)
949949
breakdown.Mana = { slots = { } }
950950
breakdown.Spirit = { slots = { } }
951951
end
952-
if actor == env.minion then
953-
calcs.doActorLifeManaSpirit(env.minion)
954-
calcs.doActorLifeManaSpiritReservation(env.minion)
952+
if actor == env.minion or actor == env.player then
953+
calcs.doActorLifeManaSpirit(actor)
954+
calcs.doActorLifeManaSpiritReservation(actor)
955955
end
956956

957957
-- Block

0 commit comments

Comments
 (0)