From da052c02e2077d581b00a7ec41c68f92371866d5 Mon Sep 17 00:00:00 2001 From: swordshine Date: Sun, 7 Jul 2013 09:55:35 +0000 Subject: [PATCH] - Fixed mana ability (Deathrite Shaman's first ability is not a mana ability) --- src/main/java/forge/card/spellability/SpellAbility.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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;