1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 01:08:59 -09:00

fixed Ayara, First of Locthwain triggering off of noncreature permanents (fixes )

This commit is contained in:
Evan Kranzler 2019-10-12 17:08:26 -04:00
parent d23d78c7f4
commit 121a93b9b4

View file

@ -18,6 +18,7 @@ import mage.constants.SuperType;
import mage.filter.FilterPermanent;
import mage.filter.common.FilterControlledCreaturePermanent;
import mage.filter.common.FilterControlledPermanent;
import mage.filter.common.FilterCreaturePermanent;
import mage.filter.predicate.mageobject.ColorPredicate;
import mage.target.common.TargetControlledPermanent;
@ -29,7 +30,7 @@ import java.util.UUID;
public final class AyaraFirstOfLocthwain extends CardImpl {
private static final FilterPermanent filter
= new FilterPermanent("{this} or another black creature");
= new FilterCreaturePermanent("{this} or another black creature");
private static final FilterControlledPermanent filter2
= new FilterControlledCreaturePermanent("another black creature");