Fix ETB effects not triggering during simulation and add a test.

This commit is contained in:
Myrd
2015-02-06 04:06:11 +00:00
parent 7a5c8fd61f
commit 2c25351a2e
2 changed files with 29 additions and 0 deletions

View File

@@ -94,6 +94,7 @@ public class GameCopier {
}
private void copyGameState(Game newGame) {
newGame.setAge(origGame.getAge());
for (ZoneType zone : ZONES) {
for (Card card : origGame.getCardsIn(zone)) {
addCard(newGame, zone, card);