* Dromoka's Command - Fixed that the third effect was not applied before the 4th resolved.

This commit is contained in:
LevelX2 2015-04-07 23:01:05 +02:00
parent a62fc1f77c
commit a7211a30d0

View file

@ -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);