* Lord of the Void - Fixed a recently added bug.

This commit is contained in:
LevelX2 2015-12-12 08:02:46 +01:00
parent 799b2434dd
commit 106f4f6fd1

View file

@ -110,7 +110,7 @@ class LordOfTheVoidEffect extends OneShotEffect {
if (controller.chooseTarget(outcome, cards, target, source, game)) {
Card card = cards.get(target.getFirstTarget(), game);
if (card != null) {
controller.moveCards(cards.getCards(game), Zone.BATTLEFIELD, source, game, false, false, false, null);
controller.moveCards(card, Zone.BATTLEFIELD, source, game, false, false, false, null);
}
}
}