From 4d6f047af8d0318483a37d8dff1407f1d29742da Mon Sep 17 00:00:00 2001 From: Ingmar Goudt Date: Tue, 9 Jul 2019 22:00:32 +0200 Subject: [PATCH] Chandra Acolyte 0 ability for planeswalkers only --- Mage.Sets/src/mage/cards/c/ChandraAcolyteOfFlame.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/c/ChandraAcolyteOfFlame.java b/Mage.Sets/src/mage/cards/c/ChandraAcolyteOfFlame.java index c6b309e346b..d5ba87d839f 100644 --- a/Mage.Sets/src/mage/cards/c/ChandraAcolyteOfFlame.java +++ b/Mage.Sets/src/mage/cards/c/ChandraAcolyteOfFlame.java @@ -18,6 +18,7 @@ import mage.constants.*; import mage.counters.CounterType; import mage.filter.FilterCard; import mage.filter.FilterPermanent; +import mage.filter.common.FilterControlledPlaneswalkerPermanent; import mage.filter.common.FilterCreatureOrPlaneswalkerPermanent; import mage.filter.common.FilterInstantOrSorceryCard; import mage.filter.predicate.mageobject.ColorPredicate; @@ -42,7 +43,7 @@ import static mage.constants.Outcome.Benefit; public final class ChandraAcolyteOfFlame extends CardImpl { private static final FilterPermanent filter - = new FilterCreatureOrPlaneswalkerPermanent("red planeswalker you control"); + = new FilterControlledPlaneswalkerPermanent("red planeswalker you control"); private static final FilterCard filter2 = new FilterInstantOrSorceryCard("instant or sorcery card with converted mana cost 3 or less");