mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Dromoka's Command - Fixed that the third effect was not applied before the 4th resolved.
This commit is contained in:
parent
a62fc1f77c
commit
a7211a30d0
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue