From b0482fa95261f87b0b8058c5fa56e02c814ffd3f Mon Sep 17 00:00:00 2001 From: "omegablast2002@yahoo.com" Date: Fri, 13 Apr 2012 11:38:28 +0000 Subject: [PATCH] removed spell blast alias, it is now soft coded. --- projects/mtg/src/MTGAbility.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/projects/mtg/src/MTGAbility.cpp b/projects/mtg/src/MTGAbility.cpp index c7731d0c5..ce96f0216 100644 --- a/projects/mtg/src/MTGAbility.cpp +++ b/projects/mtg/src/MTGAbility.cpp @@ -3687,17 +3687,6 @@ void AbilityFactory::addAbilities(int _id, Spell * spell) observer->addObserver(ability); break; } - case 1224: //Spell Blast - { - int x = computeX(spell, card); - Spell * starget = spell->getNextSpellTarget(); - if (starget) - { - if (starget->cost->getConvertedCost() <= x) - observer->mLayers->stackLayer()->Fizzle(starget); - } - break; - } case 1194: //Control Magic { observer->addObserver(NEW AControlStealAura(observer, _id, card, card->target));