mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 14:02:05 -08:00
* Fixed some problems with card search in library and cancel button (Primecal Titan).
This commit is contained in:
parent
b72c671830
commit
9bd7bbd661
4 changed files with 8 additions and 4 deletions
|
|
@ -65,11 +65,13 @@ public class TargetCardInLibrary extends TargetCard {
|
|||
|
||||
public TargetCardInLibrary(int minNumTargets, int maxNumTargets, FilterCard filter) {
|
||||
super(minNumTargets, maxNumTargets, Zone.LIBRARY, filter);
|
||||
this.setRequired(false);
|
||||
this.librarySearchLimit = Integer.MAX_VALUE;
|
||||
}
|
||||
|
||||
public TargetCardInLibrary(final TargetCardInLibrary target) {
|
||||
super(target);
|
||||
this.setRequired(false);
|
||||
this.librarySearchLimit = target.librarySearchLimit;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue