Fixed a bug of Foundry Street Denizen giving bonus to all permanents instaed of only creatures. Fixes issue #121.

This commit is contained in:
LevelX2 2013-02-04 15:28:31 +01:00
parent 5f3a8eb360
commit 07db2c8736

View file

@ -46,7 +46,7 @@ import mage.filter.predicate.permanent.AnotherPredicate;
*/
public class FoundryStreetDenizen extends CardImpl<FoundryStreetDenizen> {
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));