From 07db2c8736f64972dcd982c1d33668531a65a04b Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 4 Feb 2013 15:28:31 +0100 Subject: [PATCH] Fixed a bug of Foundry Street Denizen giving bonus to all permanents instaed of only creatures. Fixes issue #121. --- Mage.Sets/src/mage/sets/gatecrash/FoundryStreetDenizen.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/gatecrash/FoundryStreetDenizen.java b/Mage.Sets/src/mage/sets/gatecrash/FoundryStreetDenizen.java index 34961bce5c7..96b8ee9deb7 100644 --- a/Mage.Sets/src/mage/sets/gatecrash/FoundryStreetDenizen.java +++ b/Mage.Sets/src/mage/sets/gatecrash/FoundryStreetDenizen.java @@ -46,7 +46,7 @@ import mage.filter.predicate.permanent.AnotherPredicate; */ public class FoundryStreetDenizen extends CardImpl { - private static final FilterPermanent filter = new FilterPermanent("another red creature"); + private static final FilterPermanent filter = new FilterCreaturePermanent("another red creature"); static { filter.add(new AnotherPredicate()); filter.add(new ColorPredicate(ObjectColor.RED));