* Display the avatar in the damaged list if the attacker has trample.
This commit is contained in:
jean.chalard
2009-08-31 12:35:16 +00:00
parent 0454fb20ec
commit f407fa31ef
4 changed files with 45 additions and 18 deletions
+1 -1
View File
@@ -638,7 +638,7 @@ int MTGCardInstance::stepPower(CombatStep step)
case FIRST_STRIKE :
if (has(Constants::FIRSTSTRIKE) || has(Constants::DOUBLESTRIKE)) return MAX(0, power); else return 0;
case DAMAGE :
default :
if (has(Constants::FIRSTSTRIKE)) return 0; else return MAX(0, power);
default : return 0;
}
}