if multiple permanents come to battlefield at the same time, they are aware now of each other. (e.g. useful for for Valakut, the Molten Pinnacle).

This commit is contained in:
LevelX2 2014-02-06 01:02:44 +01:00
parent 9a0c05f576
commit ca831aee05
6 changed files with 39 additions and 6 deletions

View file

@ -1790,6 +1790,11 @@ public abstract class GameImpl<T extends GameImpl<T>> implements Game, Serializa
return state.getPriorityPlayerId();
}
@Override
public void addSimultaneousEvent(GameEvent event) {
state.addSimultaneousEvent(event, this);
}
@Override
public void fireEvent(GameEvent event) {
state.handleEvent(event, this);