diff --git a/src/main/java/forge/card/spellability/SpellAbility.java b/src/main/java/forge/card/spellability/SpellAbility.java index a7efd33f468..e319ceef2a3 100644 --- a/src/main/java/forge/card/spellability/SpellAbility.java +++ b/src/main/java/forge/card/spellability/SpellAbility.java @@ -130,8 +130,9 @@ public abstract class SpellAbility implements ISpellAbility, ITargetable { // Check whether spell or ability first if (this.isSpell()) return false; - - if(getRestrictions() != null && getRestrictions().getPlaneswalker()) + // without a target + if (this.usesTargeting()) return false; + if (getRestrictions() != null && getRestrictions().getPlaneswalker()) return false; //Loyalty ability, not a mana ability. return getManaPartRecursive() != null;