mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fix #9129
This commit is contained in:
parent
db3262aff6
commit
665e47634d
2 changed files with 4 additions and 0 deletions
|
@ -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() {
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue