-check athat act of treason works correctly
-Fixed emblem of warmind
-removed incorrect cards ("When this enters the battlefield, target..." please see http://wololo.net/forum/viewtopic.php?f=6&t=669
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-09-26 04:10:29 +00:00
parent c5b48df138
commit 6df665c340
45 changed files with 828 additions and 746 deletions
+1 -5
View File
@@ -1710,11 +1710,7 @@ int MTGAbility::testDestroy(){
if (forceDestroy == 1) return 1;
if (forceDestroy == -1) return 0;
if (!game->isInPlay(source) ) return 1;
if (target && !game->isInPlay((MTGCardInstance *)target)){
source->controller()->game->putInGraveyard(source);//TODO put this in a better place ???
return 1;
}
if (target && !game->isInPlay((MTGCardInstance *)target)) return 1;
return 0;
}