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

@ -21,14 +21,10 @@ public class SearchLibraryPutInPlayEffect extends SearchEffect {
protected boolean optional;
public SearchLibraryPutInPlayEffect(TargetCardInLibrary target) {
this(target, false, true);
this(target, false);
}
public SearchLibraryPutInPlayEffect(TargetCardInLibrary target, boolean tapped) {
this(target, tapped, true);
}
public SearchLibraryPutInPlayEffect(TargetCardInLibrary target, boolean tapped, boolean forceShuffle) {
this(target, tapped, true, false);
}