mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* 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…
Reference in a new issue