diff --git a/Mage.Sets/src/mage/cards/b/BibFortuna.java b/Mage.Sets/src/mage/cards/b/BibFortuna.java index 40f1005621..91232603f8 100644 --- a/Mage.Sets/src/mage/cards/b/BibFortuna.java +++ b/Mage.Sets/src/mage/cards/b/BibFortuna.java @@ -30,7 +30,7 @@ public final class BibFortuna extends CardImpl { this.toughness = new MageInt(1); // When Bib Fortuna enters the battlefield search your library for a card then shuffle your library and put in on top. You lose 1 life. - Ability ability = new EntersBattlefieldTriggeredAbility(new SearchLibraryPutOnLibraryEffect(new TargetCardInLibrary()), false); + Ability ability = new EntersBattlefieldTriggeredAbility(new SearchLibraryPutOnLibraryEffect(new TargetCardInLibrary(), false), false); ability.addEffect(new LoseLifeSourceControllerEffect(1)); this.addAbility(ability); diff --git a/Mage.Sets/src/mage/cards/b/BringerOfTheBlackDawn.java b/Mage.Sets/src/mage/cards/b/BringerOfTheBlackDawn.java index e34f05d342..3f6da98cef 100644 --- a/Mage.Sets/src/mage/cards/b/BringerOfTheBlackDawn.java +++ b/Mage.Sets/src/mage/cards/b/BringerOfTheBlackDawn.java @@ -37,7 +37,7 @@ public final class BringerOfTheBlackDawn extends CardImpl { // Trample this.addAbility(TrampleAbility.getInstance()); // At the beginning of your upkeep, you may pay 2 life. If you do, search your library for a card, then shuffle your library and put that card on top of it. - Ability ability = new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, new DoIfCostPaid(new SearchLibraryPutOnLibraryEffect(new TargetCardInLibrary()), new PayLifeCost(2)), TargetController.YOU, false); + Ability ability = new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, new DoIfCostPaid(new SearchLibraryPutOnLibraryEffect(new TargetCardInLibrary(), false), new PayLifeCost(2)), TargetController.YOU, false); this.addAbility(ability); } diff --git a/Mage.Sets/src/mage/cards/i/ImperialSeal.java b/Mage.Sets/src/mage/cards/i/ImperialSeal.java index 8bcf898313..f580855c5e 100644 --- a/Mage.Sets/src/mage/cards/i/ImperialSeal.java +++ b/Mage.Sets/src/mage/cards/i/ImperialSeal.java @@ -20,7 +20,7 @@ public final class ImperialSeal extends CardImpl { // Search your library for a card, then shuffle your library and put that card on top of it. You lose 2 life. - this.getSpellAbility().addEffect(new SearchLibraryPutOnLibraryEffect(new TargetCardInLibrary())); + this.getSpellAbility().addEffect(new SearchLibraryPutOnLibraryEffect(new TargetCardInLibrary(), false)); this.getSpellAbility().addEffect(new LoseLifeSourceControllerEffect(2)); } diff --git a/Mage.Sets/src/mage/cards/l/LilianaVess.java b/Mage.Sets/src/mage/cards/l/LilianaVess.java index c24254949b..c79510b6b3 100644 --- a/Mage.Sets/src/mage/cards/l/LilianaVess.java +++ b/Mage.Sets/src/mage/cards/l/LilianaVess.java @@ -40,7 +40,7 @@ public final class LilianaVess extends CardImpl { this.addAbility(ability1); // -2: Search your library for a card, then shuffle your library and put that card on top of it. - this.addAbility(new LoyaltyAbility(new SearchLibraryPutOnLibraryEffect(new TargetCardInLibrary()), -2)); + this.addAbility(new LoyaltyAbility(new SearchLibraryPutOnLibraryEffect(new TargetCardInLibrary(), false), -2)); // -8: Put all creature cards from all graveyards onto the battlefield under your control. this.addAbility(new LoyaltyAbility(new LilianaVessEffect(), -8)); diff --git a/Mage/src/main/java/mage/abilities/effects/common/search/SearchLibraryPutOnLibraryEffect.java b/Mage/src/main/java/mage/abilities/effects/common/search/SearchLibraryPutOnLibraryEffect.java index f6e5a7f35c..ca71832a7e 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/search/SearchLibraryPutOnLibraryEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/search/SearchLibraryPutOnLibraryEffect.java @@ -19,11 +19,6 @@ public class SearchLibraryPutOnLibraryEffect extends SearchEffect { private boolean reveal; - public SearchLibraryPutOnLibraryEffect(TargetCardInLibrary target) { - this(target, false); - setText(); - } - public SearchLibraryPutOnLibraryEffect(TargetCardInLibrary target, boolean reveal) { super(target, Outcome.DrawCard); this.reveal = reveal;