- Minor code reorganization in ComputerUtilCard.

This commit is contained in:
Agetian
2017-09-17 04:44:07 +00:00
parent 6b5c52d2c8
commit 09042f1dbf

View File

@@ -1364,10 +1364,12 @@ public class ComputerUtilCard {
pumpedDmg = 0;
}
}
if ( (!c.hasKeyword("Infect") && pumpedDmg > dmg && pumpedDmg >= opp.getLife())
|| (c.hasKeyword("Infect") && pumpedDmg > dmg && pumpedDmg >= opp.getPoisonCounters()) ) {
if (pumpedDmg > dmg) {
if ((!c.hasKeyword("Infect") && pumpedDmg >= opp.getLife())
|| (c.hasKeyword("Infect") && pumpedDmg >= opp.getPoisonCounters())) {
return true;
}
}
// try to determine if pumping a creature for more power will give lethal on board
// considering all unblocked creatures after the blockers are already declared
if (phase.is(PhaseType.COMBAT_DECLARE_BLOCKERS) && pumpedDmg > dmg) {