* Fixed a bug that order of triggered abilities of tokens were not shown to human player and the UI was locked (fixes #910).

This commit is contained in:
LevelX2 2015-08-25 23:34:15 +02:00
parent b62dadf95d
commit 78071ce0a3
5 changed files with 65 additions and 17 deletions

View file

@ -846,7 +846,8 @@ public class GameController implements GameCallback {
perform(playerId, new Command() {
@Override
public void execute(UUID playerId) {
getGameSession(playerId).target(question, new CardsView(abilities, game), null, required, options);
CardsView cardsView = new CardsView(abilities, game);
getGameSession(playerId).target(question, cardsView, null, required, options);
}
});
}