1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-11 17:00:08 -09:00

Conflux could only target land cards, fixes issue

This commit is contained in:
Ingmar Goudt 2020-12-29 14:08:30 +01:00
parent 9893e9d254
commit add3702382

View file

@ -7,6 +7,7 @@ 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;
@ -42,7 +43,7 @@ public final class Conflux extends CardImpl {
class ConfluxTarget extends TargetCardInLibrary {
private static final FilterCard filter
= new FilterLandCard("a white card, a blue card, a black card, a red card, and a green card");
= new FilterNonlandCard("a white card, a blue card, a black card, a red card, and a green card");
static {
filter.add(Predicates.not(ColorlessPredicate.instance));