Skip to content

Commit

Permalink
Fix AbilityResolves timing (Card-Forge#6464)
Browse files Browse the repository at this point in the history
  • Loading branch information
tool4ever authored and Northmoc committed Nov 22, 2024
1 parent 02c674b commit 265df2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forge-game/src/main/java/forge/game/zone/MagicStack.java
Original file line number Diff line number Diff line change
Expand Up @@ -607,10 +607,10 @@ public final void resolveStack() {
}
} else if (sa.getApi() != null) {
AbilityUtils.handleRemembering(sa);
AbilityUtils.resolve(sa);
final Map<AbilityKey, Object> runParams = AbilityKey.mapFromCard(source);
runParams.put(AbilityKey.SpellAbility, sa);
game.getTriggerHandler().runTrigger(TriggerType.AbilityResolves, runParams, false);
AbilityUtils.resolve(sa);
} else {
sa.resolve();
// do creatures ETB from here?
Expand Down

0 comments on commit 265df2b

Please sign in to comment.