mirror of
https://github.com/correl/mage.git
synced 2025-04-02 17:00:11 -09:00
* Fixed that cards in graveyard did not show their id in tooltip.
This commit is contained in:
parent
776c44b5bb
commit
4054b6fc91
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ public class PlayerView implements Serializable {
|
|||
|
||||
this.hasLeft = player.hasLeft();
|
||||
for (Card card: player.getGraveyard().getCards(game)) {
|
||||
graveyard.put(card.getId(), new CardView(card));
|
||||
graveyard.put(card.getId(), new CardView(card, game, card.getId(), false));
|
||||
}
|
||||
for (ExileZone exileZone : game.getExile().getExileZones()) {
|
||||
for (Card card : exileZone.getCards(game)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue