From 1869d97dbcf74daf70102c2fb3f964ae9fa29832 Mon Sep 17 00:00:00 2001 From: Jeff Date: Mon, 17 Apr 2017 15:59:03 -0500 Subject: [PATCH] - Fixed Plague Belcher. --- Mage.Sets/src/mage/cards/p/PlagueBelcher.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Mage.Sets/src/mage/cards/p/PlagueBelcher.java b/Mage.Sets/src/mage/cards/p/PlagueBelcher.java index 1ffdfe96297..83a280fdd9b 100644 --- a/Mage.Sets/src/mage/cards/p/PlagueBelcher.java +++ b/Mage.Sets/src/mage/cards/p/PlagueBelcher.java @@ -37,10 +37,12 @@ import mage.abilities.keyword.MenaceAbility; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; +import mage.constants.TargetController; import mage.counters.CounterType; import mage.filter.common.FilterCreaturePermanent; import mage.filter.predicate.mageobject.SubtypePredicate; import mage.filter.predicate.permanent.AnotherPredicate; +import mage.filter.predicate.permanent.ControllerPredicate; import mage.target.common.TargetControlledCreaturePermanent; /** @@ -52,6 +54,7 @@ public class PlagueBelcher extends CardImpl { private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("another Zombie you control"); static { + filter.add(new ControllerPredicate(TargetController.YOU)); filter.add(new SubtypePredicate("Zombie")); filter.add(new AnotherPredicate()); }