mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fixed a bug of Foundry Street Denizen giving bonus to all permanents instaed of only creatures. Fixes issue #121.
This commit is contained in:
parent
5f3a8eb360
commit
07db2c8736
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue