Fixes issue 19.

This commit is contained in:
maurer.it 2010-12-26 14:06:25 -05:00
parent efe55aff76
commit f929d79b24
2 changed files with 22 additions and 1 deletions

View file

@ -343,7 +343,7 @@ public class GameController implements GameCallback {
private synchronized void target(UUID playerId, String question, Collection<? extends Ability> abilities, boolean required) {
if (gameSessions.containsKey(playerId))
gameSessions.get(playerId).target(question, new CardsView(abilities, game.getState()), null, required, getGameView(playerId));
gameSessions.get(playerId).target(question, new CardsView(abilities, game), null, required, getGameView(playerId));
informOthers(playerId);
}