mirror of
https://github.com/correl/mage.git
synced 2025-01-13 03:00:10 +00:00
Improved fix for add3702382
, #7310 (there are possible colored creature lands like Dryad Arbor);
This commit is contained in:
parent
add3702382
commit
128ac1f477
1 changed files with 1 additions and 3 deletions
|
@ -6,8 +6,6 @@ import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
|||
import mage.cards.*;
|
||||
import mage.constants.CardType;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.common.FilterLandCard;
|
||||
import mage.filter.common.FilterNonlandCard;
|
||||
import mage.filter.predicate.Predicates;
|
||||
import mage.filter.predicate.mageobject.ColorlessPredicate;
|
||||
import mage.game.Game;
|
||||
|
@ -43,7 +41,7 @@ public final class Conflux extends CardImpl {
|
|||
class ConfluxTarget extends TargetCardInLibrary {
|
||||
|
||||
private static final FilterCard filter
|
||||
= new FilterNonlandCard("a white card, a blue card, a black card, a red card, and a green card");
|
||||
= new FilterCard("a white card, a blue card, a black card, a red card, and a green card");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(ColorlessPredicate.instance));
|
||||
|
|
Loading…
Reference in a new issue