-added "this" as valid target (still needs some work)  see cathodion
- Added mythic rares in boosters
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-07-20 03:35:26 +00:00
parent 8d62b9288c
commit a376e8110b
8 changed files with 66 additions and 19 deletions

View File

@@ -2408,7 +2408,8 @@ int GenericTriggeredAbility::resolve(){
}
int GenericTriggeredAbility::testDestroy(){
if (destroyCondition) return destroyCondition->testDestroy();
if (!TriggeredAbility::testDestroy()) return 0;
if (destroyCondition) return (destroyCondition->testDestroy());
return t->testDestroy();
}