From 505b32aac5124533209233d93206117dfec370dd Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Tue, 1 Mar 2022 19:51:42 -0500 Subject: [PATCH] fixed a verify failure --- Mage.Sets/src/mage/cards/g/Graxiplon.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/g/Graxiplon.java b/Mage.Sets/src/mage/cards/g/Graxiplon.java index 73d68c392a8..c6c2ede6f3b 100644 --- a/Mage.Sets/src/mage/cards/g/Graxiplon.java +++ b/Mage.Sets/src/mage/cards/g/Graxiplon.java @@ -28,9 +28,9 @@ public final class Graxiplon extends CardImpl { this.power = new MageInt(3); this.toughness = new MageInt(4); - // Graxiplon can’t be blocked unless defending player controls three or more creatures that share a creature type. + // Graxiplon can't be blocked unless defending player controls three or more creatures that share a creature type. this.addAbility(new SimpleStaticAbility(new ConditionalRestrictionEffect( - new CantBeBlockedSourceEffect(), GraxiplonCondition.instance, "{this} can’t be blocked " + + new CantBeBlockedSourceEffect(), GraxiplonCondition.instance, "{this} can't be blocked " + "unless defending player controls three or more creatures that share a creature type" ))); }