forked from External/mage
Fixed some handling problems of triggered abilities.
This commit is contained in:
parent
e02b3377b3
commit
0443311f0e
8 changed files with 30 additions and 28 deletions
|
|
@ -1100,7 +1100,9 @@ public abstract class GameImpl<T extends GameImpl<T>> implements Game, Serializa
|
|||
} finally {
|
||||
if (top != null) {
|
||||
state.getStack().remove(top);
|
||||
state.handleSimultaneousEvent(this);
|
||||
while (state.hasSimultaneousEvents()) {
|
||||
state.handleSimultaneousEvent(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue