From 2cb046c048ad9f1e085dd6687e2c73069dd6cb95 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 26 Jan 2014 09:30:18 +0100 Subject: [PATCH] * Mortal's Resolve - Fixed missing target definition. --- Mage.Sets/src/mage/sets/bornofthegods/MortalsResolve.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/sets/bornofthegods/MortalsResolve.java b/Mage.Sets/src/mage/sets/bornofthegods/MortalsResolve.java index 0a083efcd4..4741dd1050 100644 --- a/Mage.Sets/src/mage/sets/bornofthegods/MortalsResolve.java +++ b/Mage.Sets/src/mage/sets/bornofthegods/MortalsResolve.java @@ -36,6 +36,7 @@ import mage.cards.CardImpl; import mage.constants.CardType; import mage.constants.Duration; import mage.constants.Rarity; +import mage.target.common.TargetCreaturePermanent; /** * @@ -56,6 +57,7 @@ public class MortalsResolve extends CardImpl { effect = new GainAbilityTargetEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn); effect.setText("and gains indestructible until end of turn"); this.getSpellAbility().addEffect(effect); + this.getSpellAbility().addTarget(new TargetCreaturePermanent(true)); } public MortalsResolve(final MortalsResolve card) {