* Fixed that permanents brought onto battlefield by search abilities were always tapped.

This commit is contained in:
LevelX2 2015-10-21 15:14:20 +02:00
parent 2b68d3e0a9
commit d20bbcfe0b
2 changed files with 60 additions and 1 deletions

View file

@ -90,7 +90,7 @@ public class SearchLibraryPutInPlayEffect extends SearchEffect {
if (player.searchLibrary(target, game)) {
if (target.getTargets().size() > 0) {
player.moveCards(new CardsImpl(target.getTargets()).getCards(game),
Zone.BATTLEFIELD, source, game, true, false, false, null);
Zone.BATTLEFIELD, source, game, tapped, false, false, null);
}
player.shuffleLibrary(game);
return true;