- Fixed the AI not playing cards like Tinker and Natural Order.

This commit is contained in:
Sloth
2012-02-28 22:10:26 +00:00
parent 6c3350c4e4
commit f694a0b9a1

View File

@@ -435,7 +435,8 @@ public final class AbilityFactoryChangeZone {
if (abCost != null) { if (abCost != null) {
// AI currently disabled for these costs // AI currently disabled for these costs
if (!CostUtil.checkSacrificeCost(abCost, source)) { if (!CostUtil.checkSacrificeCost(abCost, source)
&& !destination.equals("Battlefield")) {
return false; return false;
} }