- Small fix for Orcish Captain.

This commit is contained in:
Sloth
2014-10-26 10:58:31 +00:00
parent 242b510f26
commit 1c9c52839c

View File

@@ -29,7 +29,7 @@ public class FlipACoinAi extends SpellAbilityAi {
}
sa.resetTargets();
for (Card c : ai.getOpponent().getCreaturesInPlay()) {
if (c.canBeTargetedBy(sa)) {
if (sa.canTarget(c)) {
sa.getTargets().add(c);
return true;
}