- Fixed "You may have CARDNAME assign its combat damage as though it weren't blocked." allowing the AI to deal damage twice.

This commit is contained in:
Sloth
2012-03-09 14:06:21 +00:00
parent 846597e5d0
commit ebbda4b994

View File

@@ -805,6 +805,7 @@ public class Combat {
if (attacker.hasKeyword("You may have CARDNAME assign its combat damage as though it weren't blocked.") if (attacker.hasKeyword("You may have CARDNAME assign its combat damage as though it weren't blocked.")
|| attacker.hasKeyword("CARDNAME assigns its combat damage as though it weren't blocked.")) { || attacker.hasKeyword("CARDNAME assigns its combat damage as though it weren't blocked.")) {
this.addDefendingDamage(damage, attacker); this.addDefendingDamage(damage, attacker);
return;
} }
if (block.size() == 1) { if (block.size() == 1) {