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 #7310
This commit is contained in:
parent
9893e9d254
commit
add3702382
1 changed files with 2 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Reference in a new issue