- Fixed AI trying to cheat with Goblin Test Pilot.

This commit is contained in:
Sloth
2013-06-09 12:12:04 +00:00
parent 6c142c2550
commit 3b81f0b6df

View File

@@ -210,6 +210,10 @@ public class DamageDealAi extends DamageAiBase {
return this.damageChooseNontargeted(ai, saMe, dmg);
}
if (tgt.isRandomTarget()) {
return false;
}
return this.damageChoosingTargets(ai, saMe, tgt, dmg, false, false);
}