From b9537f88add2cf71ea77725baebe683718c85cfd Mon Sep 17 00:00:00 2001 From: Susucre <34709007+Susucre@users.noreply.github.com> Date: Fri, 27 Oct 2023 22:32:56 +0200 Subject: [PATCH] fix Arcane Proxy requiring mana to cast the target spell --- Mage.Sets/src/mage/cards/a/ArcaneProxy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/a/ArcaneProxy.java b/Mage.Sets/src/mage/cards/a/ArcaneProxy.java index bd89b0c870a..097c9289492 100644 --- a/Mage.Sets/src/mage/cards/a/ArcaneProxy.java +++ b/Mage.Sets/src/mage/cards/a/ArcaneProxy.java @@ -49,7 +49,7 @@ public final class ArcaneProxy extends CardImpl { // When Arcane Proxy enters the battlefield, if you cast it, exile target instant or sorcery card with mana value less than or equal to Arcane Proxy's power from your graveyard. Copy that card. You may cast the copy without paying its mana cost. Ability ability = new ConditionalInterveningIfTriggeredAbility( - new EntersBattlefieldTriggeredAbility(new ExileTargetCardCopyAndCastEffect(false)), + new EntersBattlefieldTriggeredAbility(new ExileTargetCardCopyAndCastEffect(true)), CastFromEverywhereSourceCondition.instance, "When {this} enters the battlefield, " + "if you cast it, exile target instant or sorcery card with mana value less than or equal to {this}'s " + "power from your graveyard. Copy that card. You may cast the copy without paying its mana cost."