mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
Fix Ancestral Recall
This commit is contained in:
parent
002b74763d
commit
8bbeb05ab7
1 changed files with 2 additions and 2 deletions
|
@ -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<AncestralRecall> {
|
|||
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));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue