From fa6c48ee561f065eec304b031a6e610239e4c492 Mon Sep 17 00:00:00 2001 From: Kevin Shin Date: Wed, 22 Aug 2018 03:32:28 -0500 Subject: [PATCH] Fixes Pestilence Rats to count all other rats in play instead of just other rat creatures in your control. #5251 --- Mage.Sets/src/mage/cards/p/PestilenceRats.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/p/PestilenceRats.java b/Mage.Sets/src/mage/cards/p/PestilenceRats.java index f40a6abd1d..bbf9acf52d 100644 --- a/Mage.Sets/src/mage/cards/p/PestilenceRats.java +++ b/Mage.Sets/src/mage/cards/p/PestilenceRats.java @@ -12,7 +12,7 @@ import mage.constants.CardType; import mage.constants.Duration; import mage.constants.SubType; import mage.constants.Zone; -import mage.filter.common.FilterControlledCreaturePermanent; +import mage.filter.FilterPermanent; import mage.filter.predicate.mageobject.AnotherCardPredicate; import mage.filter.predicate.mageobject.SubtypePredicate; @@ -22,7 +22,7 @@ import mage.filter.predicate.mageobject.SubtypePredicate; */ public final class PestilenceRats extends CardImpl { - private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("other Rats on the battlefield"); + private static final FilterPermanent filter = new FilterPermanent("other Rats on the battlefield"); static{ filter.add(new SubtypePredicate(SubType.RAT)); filter.add(new AnotherCardPredicate());