diff --git a/Mage.Sets/src/mage/cards/d/DemolitionField.java b/Mage.Sets/src/mage/cards/d/DemolitionField.java index bdfdcc2993a..53d56fda623 100644 --- a/Mage.Sets/src/mage/cards/d/DemolitionField.java +++ b/Mage.Sets/src/mage/cards/d/DemolitionField.java @@ -54,7 +54,7 @@ public final class DemolitionField extends CardImpl { )); ability.addEffect(new SearchLibraryPutInPlayEffect( new TargetCardInLibrary(StaticFilters.FILTER_CARD_BASIC_LAND_A), - false, true, true + false, true )); ability.addTarget(new TargetLandPermanent(filter)); this.addAbility(ability); diff --git a/Mage/src/main/java/mage/abilities/effects/common/search/SearchLibraryPutInPlayEffect.java b/Mage/src/main/java/mage/abilities/effects/common/search/SearchLibraryPutInPlayEffect.java index ddb9a083ac7..25df381a267 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/search/SearchLibraryPutInPlayEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/search/SearchLibraryPutInPlayEffect.java @@ -25,10 +25,10 @@ public class SearchLibraryPutInPlayEffect extends SearchEffect { } public SearchLibraryPutInPlayEffect(TargetCardInLibrary target, boolean tapped) { - this(target, tapped, true, false); + this(target, tapped, false); } - public SearchLibraryPutInPlayEffect(TargetCardInLibrary target, boolean tapped, boolean forceShuffle, boolean optional) { + public SearchLibraryPutInPlayEffect(TargetCardInLibrary target, boolean tapped, boolean optional) { super(target, Outcome.PutCardInPlay); this.tapped = tapped; this.optional = optional;