fixed Winds of Abandon not exiling creatures

This commit is contained in:
Evan Kranzler 2019-05-31 19:19:10 -04:00
parent 7bd016d4cb
commit 4268538290

View file

@ -86,7 +86,7 @@ class WindsOfAbandonEffect extends OneShotEffect {
if (player.searchLibrary(target, source, game)) {
Card card = player.getLibrary().getCard(target.getFirstTarget(), game);
if (card != null) {
player.moveCards(card, Zone.BATTLEFIELD, source, game, true, false, false, null);
player.moveCards(card, Zone.EXILED, source, game, true, false, false, null);
}
}
player.shuffleLibrary(source, game);