From 52fdca7cba64b4a7e11ba06304003b8d2cd10446 Mon Sep 17 00:00:00 2001 From: xenohedron Date: Sun, 15 Sep 2024 18:42:30 -0400 Subject: [PATCH] fix #12840 (Impostor Mech ability optional) --- Mage.Sets/src/mage/cards/i/ImposterMech.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/i/ImposterMech.java b/Mage.Sets/src/mage/cards/i/ImposterMech.java index e9f72d35ea8..032a5d3ae73 100644 --- a/Mage.Sets/src/mage/cards/i/ImposterMech.java +++ b/Mage.Sets/src/mage/cards/i/ImposterMech.java @@ -41,7 +41,7 @@ public final class ImposterMech extends CardImpl { // You may have Imposter Mech enter the battlefield as a copy of a creature an opponent controls, except its a Vehicle artifact with crew 3 and it loses all other card types. this.addAbility(new EntersBattlefieldAbility( - new CopyPermanentEffect(StaticFilters.FILTER_OPPONENTS_PERMANENT_A_CREATURE, applier), + new CopyPermanentEffect(StaticFilters.FILTER_OPPONENTS_PERMANENT_A_CREATURE, applier), true, null, "You may have {this} enter the battlefield as a copy of a creature " + "an opponent controls, except it's a Vehicle artifact with crew 3 and it loses all other card types.", null ));