*Fixed stupidity in commander blocking

This commit is contained in:
Hellfish
2013-09-01 18:06:47 +00:00
parent 7ef5462969
commit 242d293f5a

View File

@@ -302,7 +302,13 @@ public class ComputerUtilCombat {
cmdDmg -= blocker.getCurrentToughness();
}
}
else
{
if(combat.getBlockers(c).size() == 0)
{
cmdDmg += c.getCurrentPower();
}
}
if(cmdDmg >= 21) {
res.add(c);
}