* Fixed a problem with card movement that prevented Tiny Leaders go to command zone at game start.

This commit is contained in:
LevelX2 2016-09-22 23:08:40 +02:00
parent 4c91440f5e
commit 4ad3ef4e68
2 changed files with 9 additions and 2 deletions

View file

@ -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;
}