SearchLibraryPutInPlayEffect: remove forceshuffle parameter, part 3

This commit is contained in:
xenohedron 2023-05-13 23:38:00 -04:00
parent 698fe34014
commit b05e6d5cb1
2 changed files with 3 additions and 3 deletions

View file

@ -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);

View file

@ -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;