- fix issue 172 (crystal rod)
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-11-15 10:37:33 +00:00
parent d85b1d66de
commit 04a950c911
3 changed files with 3 additions and 2 deletions

View File

@@ -990,8 +990,8 @@ void AbilityFactory::addAbilities(int _id, Spell * spell){
}
case 1103: //Crystal Rod
{
int cost[] = {Constants::MTG_COLOR_BLUE, 1};
ASpellCastLife* ability = NEW ASpellCastLife(_id, card, Constants::MTG_COLOR_WHITE,NEW ManaCost(cost,1) , 1);
int cost[] = {Constants::MTG_COLOR_ARTIFACT, 1};
ASpellCastLife* ability = NEW ASpellCastLife(_id, card, Constants::MTG_COLOR_BLUE,NEW ManaCost(cost,1) , 1);
game->addObserver(ability);
break;
}