- Little improvement for exalted in isEffectiveAttacker.

This commit is contained in:
Sloth
2013-08-15 20:25:00 +00:00
parent cfcbde62b2
commit d74f571ddb

View File

@@ -148,7 +148,7 @@ public class AiAttackController {
if (ComputerUtilCombat.poisonIfUnblocked(attacker, opp) > 0) {
return true;
}
if (this.attackers.size() == 1 && attacker.hasKeyword("Exalted")) {
if (this.attackers.size() == 1 && attacker.hasKeyword("Exalted") && ComputerUtilCombat.predictDamageTo(opp, 1, attacker, true) > 0) {
return true;
}