- Fixed AI of Death by Dragons.

This commit is contained in:
Sloth
2013-05-15 20:57:08 +00:00
parent d62941f5ad
commit 7dd6df890e

View File

@@ -129,7 +129,7 @@ public class TokenAi extends SpellAbilityAi {
final Target tgt = sa.getTarget();
if (tgt != null) {
tgt.resetTargets();
if (tgt.canOnlyTgtOpponent()) {
if (tgt.canOnlyTgtOpponent() || "Opponent".equals(sa.getParam("AITgts"))) {
tgt.addTarget(opp);
} else {
tgt.addTarget(ai);