- fix with Momir+ */* creatures
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-04-06 12:19:18 +00:00
parent a8942331eb
commit e9190ff19f
16 changed files with 110 additions and 40 deletions
+4 -2
View File
@@ -295,8 +295,10 @@ int MTGCardInstance::setToughness(int value){
}
int MTGCardInstance::canBlock(){
if (!tapped && isACreature())return 1;
return 0;
if (tapped) return 0;
if (basicAbilities[Constants::CANTBLOCK]) return 0;
if (!isACreature())return 0;
return 1;
}
int MTGCardInstance::canBlock(MTGCardInstance * opponent){