* Fixed some problems with card search in library and cancel button (Primecal Titan).

This commit is contained in:
LevelX2 2014-06-18 08:42:32 +02:00
parent b72c671830
commit 9bd7bbd661
4 changed files with 8 additions and 4 deletions

View file

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