forked from External/mage
* Fixed a problem with card movement that prevented Tiny Leaders go to command zone at game start.
This commit is contained in:
parent
4c91440f5e
commit
4ad3ef4e68
2 changed files with 9 additions and 2 deletions
|
|
@ -59,7 +59,9 @@ public class ZonesHandler {
|
|||
}
|
||||
for (ZoneChangeInfo zoneChangeInfo : zoneChangeInfos) {
|
||||
placeInDestinationZone(zoneChangeInfo, game);
|
||||
game.addSimultaneousEvent(zoneChangeInfo.event);
|
||||
if (game.getPhase() != null) { // moving cards to zones before game started does not need events
|
||||
game.addSimultaneousEvent(zoneChangeInfo.event);
|
||||
}
|
||||
}
|
||||
return zoneChangeInfos;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue