* Mindslaver - Fixed a bug that cards on opponents hand showed your own cards only instead.

This commit is contained in:
LevelX2 2014-03-13 01:09:21 +01:00
parent 88aca77695
commit 7e768ed707

View file

@ -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));
}
}