From 8edcef6f81aefabc67109c5c2e8403ff52babb20 Mon Sep 17 00:00:00 2001 From: Justin Herlehy Date: Sat, 14 Apr 2018 10:22:22 -0700 Subject: [PATCH] [DOM] Reorder targeting and effects --- Mage.Sets/src/mage/cards/a/ArborArmament.java | 2 +- Mage.Sets/src/mage/cards/b/BlinkOfAnEye.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/a/ArborArmament.java b/Mage.Sets/src/mage/cards/a/ArborArmament.java index 4b5190dcc75..5ab64905811 100644 --- a/Mage.Sets/src/mage/cards/a/ArborArmament.java +++ b/Mage.Sets/src/mage/cards/a/ArborArmament.java @@ -49,8 +49,8 @@ public class ArborArmament extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{G}"); // Put a +1/+1 counter on target creature. That creature gains reach until end of turn. - this.getSpellAbility().addEffect(new AddCountersTargetEffect(CounterType.P1P1.createInstance())); this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + this.getSpellAbility().addEffect(new AddCountersTargetEffect(CounterType.P1P1.createInstance())); this.getSpellAbility().addEffect(new GainAbilityTargetEffect(ReachAbility.getInstance(), Duration.EndOfTurn)); } diff --git a/Mage.Sets/src/mage/cards/b/BlinkOfAnEye.java b/Mage.Sets/src/mage/cards/b/BlinkOfAnEye.java index 32bcb15b3c3..f76d6319b6c 100644 --- a/Mage.Sets/src/mage/cards/b/BlinkOfAnEye.java +++ b/Mage.Sets/src/mage/cards/b/BlinkOfAnEye.java @@ -52,8 +52,8 @@ public class BlinkOfAnEye extends CardImpl { this.addAbility(new KickerAbility("{1}{U}")); // Return target nonland permanent to its owner's hand. If this spell was kicked, draw a card. - this.getSpellAbility().addEffect(new ReturnToHandTargetEffect()); this.getSpellAbility().addTarget(new TargetNonlandPermanent()); + this.getSpellAbility().addEffect(new ReturnToHandTargetEffect()); this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new DrawCardSourceControllerEffect(1), KickedCondition.instance, "If this spell was kicked, draw a card")); }