From a7211a30d05c9157bdf70c600a260e5dcb2ab1c6 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 7 Apr 2015 23:01:05 +0200 Subject: [PATCH] * Dromoka's Command - Fixed that the third effect was not applied before the 4th resolved. --- Mage.Sets/src/mage/sets/dragonsoftarkir/DromokasCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/dragonsoftarkir/DromokasCommand.java b/Mage.Sets/src/mage/sets/dragonsoftarkir/DromokasCommand.java index 48d1b628a6..70f308bde3 100644 --- a/Mage.Sets/src/mage/sets/dragonsoftarkir/DromokasCommand.java +++ b/Mage.Sets/src/mage/sets/dragonsoftarkir/DromokasCommand.java @@ -93,7 +93,7 @@ public class DromokasCommand extends CardImpl { mode = new Mode(); effect = new AddCountersTargetEffect(CounterType.P1P1.createInstance()); effect.setText("Put a +1/+1 counter on target creature"); - effect.applyEffectsAfter(); // so the counter is taken into account if the target is also used in mode 4 + effect.setApplyEffectsAfter(); // so the counter is taken into account if the target is also used in mode 4 mode.getEffects().add(effect); mode.getTargets().add(new TargetCreaturePermanent(filterCreature)); this.getSpellAbility().getModes().addMode(mode);