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

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