- Added AI Logic to CounterMagic, so AI can at least use Kozilek as a 12/12 body with a strong ETB ability, even though the AI doesn't know how to use it's activated ability

This commit is contained in:
Sol
2016-01-27 23:09:11 +00:00
parent c44901fca5
commit d4e5f5e7d1
2 changed files with 9 additions and 2 deletions

View File

@@ -104,6 +104,14 @@ public class CounterAi extends SpellAbilityAi {
// But really it should be more picky about how it counters things
if (sa.hasParam("AILogic")) {
String logic = sa.getParam("AILogic");
if ("Never".equals(logic)) {
return false;
}
}
return toReturn;
}