forked from External/mage
* Fixed that face down exiled cards were revealed in player specific exile view window.
This commit is contained in:
parent
8686f4f777
commit
9e8157827a
2 changed files with 2 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ public class PlayerView implements Serializable {
|
|||
for (ExileZone exileZone : game.getExile().getExileZones()) {
|
||||
for (Card card : exileZone.getCards(game)) {
|
||||
if (player.getId().equals(card.getOwnerId())) {
|
||||
exile.put(card.getId(), new CardView(card));
|
||||
exile.put(card.getId(), new CardView(card, game, card.getId(), false)); // unnown if it's allowed to look under a face down card
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue