fixed most of the reviewed code, corrected all danger zone code which could have had bad side effects.

This commit is contained in:
omegablast2002@yahoo.com
2011-01-22 16:12:17 +00:00
parent 946df16af5
commit 27e60fc605
3 changed files with 23 additions and 22 deletions
+1 -1
View File
@@ -1472,7 +1472,7 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG
{
stored = parseMagicLine(sAbility, id, spell, card);
}
MTGAbility * a = NEW AADYNAMIC(id, card, target,type,effect,who,amountsource,stored);
MTGAbility * a = NEW AADynamic(id, card, target,type,effect,who,amountsource,stored);
a->oneShot = 1;
return a;
}