From 94f2b53711bbb053ed4454291dd1c52f05b5863e Mon Sep 17 00:00:00 2001 From: xenohedron Date: Sun, 16 Jul 2023 03:54:32 -0400 Subject: [PATCH] fix verify --- Mage.Sets/src/mage/cards/i/ImposingVisage.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/i/ImposingVisage.java b/Mage.Sets/src/mage/cards/i/ImposingVisage.java index b476eeb2145..54e4e0c00d1 100644 --- a/Mage.Sets/src/mage/cards/i/ImposingVisage.java +++ b/Mage.Sets/src/mage/cards/i/ImposingVisage.java @@ -1,4 +1,3 @@ - package mage.cards.i; import java.util.UUID; @@ -14,7 +13,6 @@ import mage.constants.AttachmentType; import mage.constants.CardType; import mage.constants.SubType; import mage.constants.Outcome; -import mage.constants.Zone; import mage.target.TargetPermanent; import mage.target.common.TargetCreaturePermanent; @@ -37,7 +35,8 @@ public final class ImposingVisage extends CardImpl { this.addAbility(ability); // Enchanted creature has menace. (It can't be blocked except by two or more creatures.) - this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(new MenaceAbility(), AttachmentType.AURA))); + this.addAbility(new SimpleStaticAbility(new GainAbilityAttachedEffect(new MenaceAbility(), AttachmentType.AURA) + .setText("enchanted creature has menace. (It can’t be blocked except by two or more creatures.)"))); } private ImposingVisage(final ImposingVisage card) {