diff --git a/src/main/java/forge/card/ability/AbilityUtils.java b/src/main/java/forge/card/ability/AbilityUtils.java index 339c47d2c08..46e53b8a8ec 100644 --- a/src/main/java/forge/card/ability/AbilityUtils.java +++ b/src/main/java/forge/card/ability/AbilityUtils.java @@ -1040,11 +1040,13 @@ public class AbilityUtils { // every resolving spellAbility will end here if (usedStack) { SpellAbility root = sa.getRootAbility(); + // static abilities will get refreshed from SBE check. game.getStack().finishResolving(root, false); } return; } - // check conditions + + game.getAction().checkStaticAbilities(); // this will refresh continuous abilities for players and permanents. AbilityUtils.resolveApiAbility(abSub, usedStack, game); }