forked from External/mage
* Mindslaver - Fixed a bug that cards on opponents hand showed your own cards only instead.
This commit is contained in:
parent
88aca77695
commit
7e768ed707
1 changed files with 1 additions and 1 deletions
|
|
@ -502,7 +502,7 @@ public final class GamePanel extends javax.swing.JPanel {
|
|||
// Get opponents hand cards if available
|
||||
if (game.getOpponentHands() != null) {
|
||||
for (Map.Entry<String, SimpleCardsView> hand: game.getOpponentHands().entrySet()) {
|
||||
handCards.put(hand.getKey(), CardsViewUtil.convertSimple(game.getHand(), loadedCards));
|
||||
handCards.put(hand.getKey(), CardsViewUtil.convertSimple(hand.getValue(), loadedCards));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue