fixed Etchings of the Chosen not allowing a target to be chosen

This commit is contained in:
Evan Kranzler 2019-06-07 08:45:10 -04:00
parent 1895a33966
commit 55ee8a7b70

View file

@ -21,6 +21,7 @@ import mage.filter.common.FilterControlledPermanent;
import mage.filter.common.FilterCreaturePermanent;
import mage.filter.predicate.mageobject.ChosenSubtypePredicate;
import mage.filter.predicate.permanent.ControllerPredicate;
import mage.target.common.TargetControlledCreaturePermanent;
import mage.target.common.TargetControlledPermanent;
import java.util.UUID;
@ -57,6 +58,7 @@ public final class EtchingsOfTheChosen extends CardImpl {
IndestructibleAbility.getInstance(), Duration.EndOfTurn
), new GenericManaCost(1));
ability.addCost(new SacrificeTargetCost(new TargetControlledPermanent(filter2)));
ability.addTarget(new TargetControlledCreaturePermanent());
this.addAbility(ability);
}