Fixes #492 : Tarmogoyf p/t stats are not displayed in hand

This commit is contained in:
magenoxx 2014-08-11 11:10:27 +04:00
parent b9618a2074
commit 58e4c66af6
4 changed files with 9 additions and 16 deletions

View file

@ -235,7 +235,7 @@ public class GameSession extends GameWatcher {
Player player = game.getPlayer(playerId);
player.setUserData(this.userData);
GameView gameView = new GameView(game.getState(), game, playerId);
gameView.setHand(new SimpleCardsView(player.getHand().getCards(game)));
gameView.setHand(new CardsView(player.getHand().getCards(game)));
gameView.setCanPlayInHand(player.getPlayableInHand(game));
processControlledPlayers(player, gameView);