This commit is contained in:
Alex W. Jackson 2022-10-07 11:35:56 -04:00
parent db3262aff6
commit 665e47634d
2 changed files with 4 additions and 0 deletions

View file

@ -56,6 +56,8 @@ public class CombatDamageStep extends Step {
for (CombatGroup group : game.getCombat().getBlockingGroups()) {
group.applyDamage(game);
}
// Must fire damage batch events now, before SBA (https://github.com/magefree/mage/issues/9129)
game.getState().handleSimultaneousEvent(game);
}
public boolean getFirst() {

View file

@ -59,6 +59,8 @@ public class FirstCombatDamageStep extends Step {
for (CombatGroup group : game.getCombat().getBlockingGroups()) {
group.applyDamage(game);
}
// Must fire damage batch events now, before SBA (https://github.com/magefree/mage/issues/9129)
game.getState().handleSimultaneousEvent(game);
}
public boolean getFirst() {