* Path to Exile - Fixed that the land was put unter control of the controller of Path to Exile to the battlefield.

This commit is contained in:
LevelX2 2015-10-21 17:05:36 +02:00
parent f7c354afd3
commit c9cb53101d

View file

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