Add missing target to Battle-Rage Blessing

This commit is contained in:
Alex W. Jackson 2022-08-31 15:52:28 -04:00
parent b0d8095fc3
commit 6c91714020

View file

@ -6,6 +6,7 @@ import mage.abilities.keyword.IndestructibleAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.target.common.TargetCreaturePermanent;
import java.util.UUID;
@ -22,6 +23,7 @@ public final class BattleRageBlessing extends CardImpl {
.setText("target creature gains deathtouch"));
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(IndestructibleAbility.getInstance())
.setText("and indestructible until end of turn"));
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
}
private BattleRageBlessing(final BattleRageBlessing card) {