mirror of
https://github.com/magefree/mage.git
synced 2026-01-21 02:39:54 -08: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;
|
package mage.sets.limitedalpha;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import mage.abilities.effects.common.DrawCardControllerEffect;
|
import mage.abilities.effects.common.DrawCardTargetEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.Rarity;
|
import mage.constants.Rarity;
|
||||||
|
|
@ -47,7 +47,7 @@ public class AncestralRecall extends CardImpl<AncestralRecall> {
|
||||||
this.color.setBlue(true);
|
this.color.setBlue(true);
|
||||||
|
|
||||||
// Target player draws three cards.
|
// Target player draws three cards.
|
||||||
this.getSpellAbility().addEffect(new DrawCardControllerEffect(3));
|
this.getSpellAbility().addEffect(new DrawCardTargetEffect(3));
|
||||||
this.getSpellAbility().addTarget(new TargetPlayer(true));
|
this.getSpellAbility().addTarget(new TargetPlayer(true));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue