From 99e646b705e0cd82e3ffebf0d8ffe762c9c56d1d Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Tue, 7 Jan 2020 06:07:40 +0400 Subject: [PATCH] fixed Blood Aspirant (missing target) --- Mage.Sets/src/mage/cards/b/BloodAspirant.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/cards/b/BloodAspirant.java b/Mage.Sets/src/mage/cards/b/BloodAspirant.java index e28a8813539..bf5a3e452a3 100644 --- a/Mage.Sets/src/mage/cards/b/BloodAspirant.java +++ b/Mage.Sets/src/mage/cards/b/BloodAspirant.java @@ -22,6 +22,7 @@ import mage.filter.predicate.Predicates; import mage.game.Game; import mage.game.events.GameEvent; import mage.target.common.TargetControlledPermanent; +import mage.target.common.TargetCreaturePermanent; import java.util.UUID; @@ -58,6 +59,7 @@ public final class BloodAspirant extends CardImpl { ability.addCost(new SacrificeTargetCost(new TargetControlledPermanent(filter))); ability.addEffect(new CantBlockTargetEffect(Duration.EndOfTurn) .setText("That creature can't block this turn.")); + ability.addTarget(new TargetCreaturePermanent()); this.addAbility(ability); }