From 8bbeb05ab7d217a87e641a5ee997e2fa80687d17 Mon Sep 17 00:00:00 2001 From: KholdFuzion Date: Tue, 23 Jul 2013 20:28:28 -0500 Subject: [PATCH] Fix Ancestral Recall --- Mage.Sets/src/mage/sets/limitedalpha/AncestralRecall.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/limitedalpha/AncestralRecall.java b/Mage.Sets/src/mage/sets/limitedalpha/AncestralRecall.java index 866ec3d9bfe..0c5ea51b4a7 100644 --- a/Mage.Sets/src/mage/sets/limitedalpha/AncestralRecall.java +++ b/Mage.Sets/src/mage/sets/limitedalpha/AncestralRecall.java @@ -28,7 +28,7 @@ package mage.sets.limitedalpha; import java.util.UUID; -import mage.abilities.effects.common.DrawCardControllerEffect; +import mage.abilities.effects.common.DrawCardTargetEffect; import mage.cards.CardImpl; import mage.constants.CardType; import mage.constants.Rarity; @@ -47,7 +47,7 @@ public class AncestralRecall extends CardImpl { this.color.setBlue(true); // Target player draws three cards. - this.getSpellAbility().addEffect(new DrawCardControllerEffect(3)); + this.getSpellAbility().addEffect(new DrawCardTargetEffect(3)); this.getSpellAbility().addTarget(new TargetPlayer(true)); }