* Dromoka's Command - Fixed that mode 3 is applied before mode 4 resolves.

This commit is contained in:
LevelX2 2015-03-25 14:33:38 +01:00
parent 488e7a9290
commit 4a051612d1

View file

@ -93,6 +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
mode.getEffects().add(effect);
mode.getTargets().add(new TargetCreaturePermanent(filterCreature));
this.getSpellAbility().getModes().addMode(mode);