SearchLibraryPutInPlayEffect: remove forceshuffle parameter, part 2

This commit is contained in:
xenohedron 2023-05-13 23:19:24 -04:00
parent 4c787423bc
commit 698fe34014
65 changed files with 69 additions and 76 deletions

View file

@ -32,7 +32,7 @@ public class FetchLandActivatedAbility extends ActivatedAbilityImpl {
FilterCard filter = new FilterCard(subType1.getDescription() + " or " + subType2.getDescription() + " card");
filter.add(Predicates.or(subType1.getPredicate(), subType2.getPredicate()));
TargetCardInLibrary target = new TargetCardInLibrary(filter);
addEffect(new SearchLibraryPutInPlayEffect(target, false, true));
addEffect(new SearchLibraryPutInPlayEffect(target, false));
}
private FetchLandActivatedAbility(FetchLandActivatedAbility ability) {