Minor change to PumpAI.pumpTgtAI so that if an irrelevant/redundant/unrecognized AiLogic tag is found, the process continues through to the default logic.

This commit is contained in:
rikimbo
2014-07-02 00:44:30 +00:00
parent e30d7bbaa2
commit e63274d411

View File

@@ -273,9 +273,11 @@ public class PumpAi extends PumpAiBase {
}
}
}
return false;
}
return false;
} else if (sa.isCurse()) {
}
if (sa.isCurse()) {
if (sa.canTarget(opp)) {
sa.getTargets().add(opp);
return true;