* Oath of the Ancient Wood - Fixed that the ability was not optional.

This commit is contained in:
LevelX2 2013-07-30 13:56:33 +02:00
parent 78dc712944
commit 5feb8b55d8

View file

@ -61,7 +61,7 @@ public class OathOfTheAncientWood extends CardImpl<OathOfTheAncientWood> {
// Whenever Oath of the Ancient Wood or another enchantment enters the battlefield under your control, you may put a +1/+1 counter on target creature.
Effect effect = new AddCountersTargetEffect(CounterType.P1P1.createInstance());
Ability ability = new EntersBattlefieldAllTriggeredAbility(Zone.BATTLEFIELD, effect, filter, false, false, null, true);
Ability ability = new EntersBattlefieldAllTriggeredAbility(Zone.BATTLEFIELD, effect, filter, true, false, null, true);
ability.addTarget(new TargetCreaturePermanent(true));
this.addAbility(ability);
}