- Little improvement in damageChoosingTargets AI (Chandra, the Firebrand will no longer omit targeting the human).

This commit is contained in:
Sloth
2011-10-10 15:55:18 +00:00
parent cf58046cc4
commit bdb17d0958

View File

@@ -447,7 +447,7 @@ public class AbilityFactory_DealDamage {
// TODO: add check here if card is about to die from something on the stack
// or from taking combat damage
boolean freePing = mandatory || AbilityFactory.playReusable(saMe);
boolean freePing = mandatory || AbilityFactory.playReusable(saMe) || tgt.getNumTargeted() > 0;
if (freePing && tgt.addTarget(AllZone.getHumanPlayer()))
continue;