fixed some look and reveal effects

This commit is contained in:
Evan Kranzler 2018-09-05 15:56:02 -04:00
parent 900aadb33b
commit 6d25f4889a
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ class ElvishRejuvenatorEffect extends OneShotEffect {
cards.addAll(controller.getLibrary().getTopCards(game, 5));
if (!cards.isEmpty()) {
TargetCard target = new TargetCard(
Zone.LIBRARY,
0, 1, Zone.LIBRARY,
new FilterLandCard("land card to put on the battlefield")
);
if (controller.choose(Outcome.PutCardInPlay, cards, target, game)) {

View file

@ -81,7 +81,7 @@ public class LookLibraryAndPickControllerEffect extends LookLibraryControllerEff
FilterCard pickFilter, Zone targetZoneLookedCards,
boolean putOnTop, boolean reveal) {
this(numberOfCards, mayShuffleAfter, numberToPick, pickFilter,
targetZoneLookedCards, putOnTop, reveal, false);
targetZoneLookedCards, putOnTop, reveal, reveal);
}
public LookLibraryAndPickControllerEffect(int numberOfCards,