From 63915101f58f5220e80d874cf34a82db3e8b4d64 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 13 Dec 2015 17:25:06 +0100 Subject: [PATCH] * Oath of the Ancient Wood - Fixed that the +1/+1 counter was added to Oath of the Ancient Wood instead on target creature. --- Mage.Sets/src/mage/sets/magic2014/OathOfTheAncientWood.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/magic2014/OathOfTheAncientWood.java b/Mage.Sets/src/mage/sets/magic2014/OathOfTheAncientWood.java index bf63880340..f381a92736 100644 --- a/Mage.Sets/src/mage/sets/magic2014/OathOfTheAncientWood.java +++ b/Mage.Sets/src/mage/sets/magic2014/OathOfTheAncientWood.java @@ -50,6 +50,7 @@ import mage.target.common.TargetCreaturePermanent; public class OathOfTheAncientWood extends CardImpl { private static final FilterEnchantmentPermanent filter = new FilterEnchantmentPermanent("Oath of the Ancient Wood or another enchantment"); + static { filter.add(new ControllerPredicate(TargetController.YOU)); } @@ -58,10 +59,9 @@ public class OathOfTheAncientWood extends CardImpl { super(ownerId, 187, "Oath of the Ancient Wood", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{2}{G}"); this.expansionSetCode = "M14"; - // 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, true, SetTargetPointer.PERMANENT, null, true); + Ability ability = new EntersBattlefieldAllTriggeredAbility(Zone.BATTLEFIELD, effect, filter, true, SetTargetPointer.NONE, null, true); ability.addTarget(new TargetCreaturePermanent()); this.addAbility(ability); }