mirror of
https://github.com/correl/mage.git
synced 2024-12-25 19:25:41 +00:00
Fixed a bug that counters on cards in the exile zone were not displayed.
This commit is contained in:
parent
e9b89c73ed
commit
e4d0c1045e
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ public class ExileView extends CardsView {
|
||||||
this.name = exileZone.getName();
|
this.name = exileZone.getName();
|
||||||
this.id = exileZone.getId();
|
this.id = exileZone.getId();
|
||||||
for (Card card: exileZone.getCards(game)) {
|
for (Card card: exileZone.getCards(game)) {
|
||||||
this.put(card.getId(), new CardView(card));
|
this.put(card.getId(), new CardView(card, game, card.getId(), false));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue