From 6dd898a83c1eff0db18020213a79445c404bfe58 Mon Sep 17 00:00:00 2001 From: Alex Vasile <48962821+Alex-Vasile@users.noreply.github.com> Date: Fri, 1 Jul 2022 20:47:56 -0400 Subject: [PATCH] Fix verify failure --- Mage.Sets/src/mage/cards/c/CloakOfInvisibility.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/c/CloakOfInvisibility.java b/Mage.Sets/src/mage/cards/c/CloakOfInvisibility.java index 4019ec5c8d..ce47f8752f 100644 --- a/Mage.Sets/src/mage/cards/c/CloakOfInvisibility.java +++ b/Mage.Sets/src/mage/cards/c/CloakOfInvisibility.java @@ -41,9 +41,9 @@ public final class CloakOfInvisibility extends CardImpl { // Enchanted creature has phasing and can't be blocked except by Walls. ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(PhasingAbility.getInstance(), AttachmentType.AURA).setText("Enchanted creature has phasing ")); ability.addEffect(new CantBeBlockedByCreaturesAttachedEffect(Duration.WhileOnBattlefield, filter, AttachmentType.AURA) - .setText("and can’t be blocked except by Walls. " + + .setText("and can't be blocked except by Walls. " + "(It phases in or out before its controller untaps during each of their untap steps. " + - "While it’s phased out, it’s treated as though it doesn’t exist.)")); + "While it's phased out, it's treated as though it doesn't exist.)")); this.addAbility(ability); }