-fix Seedcradle Witch
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-09-12 09:13:17 +00:00
parent 8a8ab2f2c1
commit f34ba20478
2 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -109,7 +109,7 @@ goblin_king.txt
gravedigger.txt
#hammerfist_giant.txt
hannas_custody.txt
#harpoon_sniper.txt uncomment when damages are correctly resolved at the damage resolution step
harpoon_sniper.txt
hellfire.txt
howl_of_the_night_pack.txt
hymn_of_rebirth.txt
@@ -167,6 +167,7 @@ rootwalla.txt
royal_assassin.txt
safehold_duo.txt
sedge_sliver.txt
seedcradle_witch.txt
seismic_assault.txt
selesnya_guildmage.txt
siege_gang_commander.txt
+2 -2
View File
@@ -220,8 +220,8 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG
string s1 = s.substr(0,found);
string s2 = s.substr(found+2);
MultiAbility * multi = NEW MultiAbility(id, card,target,NULL,NULL);
MTGAbility * a1 = parseMagicLine(s1,id,spell, card);
MTGAbility * a2 = parseMagicLine(s2,id,spell, card);
MTGAbility * a1 = parseMagicLine(s1,id,spell, card,activated);
MTGAbility * a2 = parseMagicLine(s2,id,spell, card,activated);
multi->Add(a1);
multi->Add(a2);
multi->oneShot=1;