- attempt to fix a few issues with threaten
- removed Lands from M10 boosters (use rarity=L instead of Rarity=C)
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-08-01 06:14:36 +00:00
parent 01f4797de8
commit 4570879624
3 changed files with 22 additions and 21 deletions
+1 -1
View File
@@ -2086,7 +2086,7 @@ InstantAbility::InstantAbility(int _id, MTGCardInstance * source, Damageable * _
//Instant abilities last generally until the end of the turn
int InstantAbility::testDestroy(){
int newPhase = game->getCurrentGamePhase();
if (newPhase != currentPhase && newPhase == Constants::MTG_PHASE_UNTAP) return 1;
if (newPhase != currentPhase && newPhase == Constants::MTG_PHASE_AFTER_EOT) return 1;
currentPhase = newPhase;
return 0;