Fixed a bug that counters on cards in the exile zone were not displayed.

This commit is contained in:
LevelX2 2015-03-08 01:38:21 +01:00
parent e9b89c73ed
commit e4d0c1045e

View file

@ -47,7 +47,7 @@ public class ExileView extends CardsView {
this.name = exileZone.getName();
this.id = exileZone.getId();
for (Card card: exileZone.getCards(game)) {
this.put(card.getId(), new CardView(card));
this.put(card.getId(), new CardView(card, game, card.getId(), false));
}
}