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 #6013)
This commit is contained in:
parent
d23d78c7f4
commit
121a93b9b4
1 changed files with 2 additions and 1 deletions
|
@ -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");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue