* Some fixes/chnages to AI player. Needs probably some more testing.

This commit is contained in:
LevelX2 2015-07-12 19:51:04 +02:00
parent c53c09a59b
commit fa0a40b0d6
8 changed files with 209 additions and 150 deletions

View file

@ -342,14 +342,12 @@ class JaceArchitectOfThoughtEffect3 extends OneShotEffect {
while (jaceExileZone.count(filter, game) > 0 && controller.choose(Outcome.PlayForFree, jaceExileZone, target, game)) {
Card card = game.getCard(target.getFirstTarget());
if (card != null) {
if (controller.cast(card.getSpellAbility(), game, true)) {
game.getExile().removeCard(card, game);
}
}
target.clearChosen();
}
return true;
}
}