fixed Cartographer's Hawk putting lands into play untapped

This commit is contained in:
Evan Kranzler 2020-04-29 20:15:27 -04:00
parent c861ef1b3b
commit 53bc2e559f

View file

@ -123,6 +123,6 @@ class CartographersHawkEffect extends OneShotEffect {
if (!player.chooseUse(Outcome.PutLandInPlay, "Search your library for Plains card?", source, game)) {
return true;
}
return new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(filter)).apply(game, source);
return new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(filter), true).apply(game, source);
}
}