1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-02 03:18:09 -09:00
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
Mage/src/main/java/mage/game/turn

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() {