From d353c5f32d95923e7c709dde714fb03fb5d4d747 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Fri, 7 Jun 2019 13:53:50 -0400 Subject: [PATCH] fixed Valiant Changeling counting opponent's creatures --- Mage.Sets/src/mage/cards/v/ValiantChangeling.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/v/ValiantChangeling.java b/Mage.Sets/src/mage/cards/v/ValiantChangeling.java index ff5ec85bc40..e562dd6e0c6 100644 --- a/Mage.Sets/src/mage/cards/v/ValiantChangeling.java +++ b/Mage.Sets/src/mage/cards/v/ValiantChangeling.java @@ -68,7 +68,7 @@ class ValiantChangelingCostReductionEffect extends CostModificationEffectImpl { Set subTypes = new HashSet(); int reductionAmount = 0; for (Permanent permanent : game.getBattlefield().getActivePermanents( - StaticFilters.FILTER_PERMANENT_CREATURE, source.getControllerId(), source.getSourceId(), game + StaticFilters.FILTER_CONTROLLED_CREATURE, source.getControllerId(), source.getSourceId(), game )) { if (permanent.getAbilities().contains(ChangelingAbility.getInstance()) || permanent.isAllCreatureTypes()) {