allow azami to tap non creature wizards (#14299)

This commit is contained in:
Riley 2026-01-20 18:20:30 -08:00 committed by GitHub
parent 512965c9f5
commit a89f476d1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,8 +12,7 @@ import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
import mage.constants.Zone;
import mage.filter.common.FilterControlledCreaturePermanent;
import mage.filter.common.FilterControlledPermanent;
import mage.filter.predicate.permanent.TappedPredicate;
import mage.target.common.TargetControlledPermanent;
@ -22,7 +21,7 @@ import mage.target.common.TargetControlledPermanent;
*/
public final class AzamiLadyOfScrolls extends CardImpl {
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("untapped Wizard you control");
private static final FilterControlledPermanent filter = new FilterControlledPermanent("untapped Wizard you control");
static {
filter.add(TappedPredicate.UNTAPPED);