- AnimateAllAi: implement an "Always" logic hook for cards that are generally beneficial to activate.

This commit is contained in:
Agetian
2019-05-25 08:05:03 +03:00
parent 1c0f98e55a
commit 8caf66ecea
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,10 @@ public class AnimateAllAi extends SpellAbilityAi {
@Override
protected boolean canPlayAI(Player aiPlayer, SpellAbility sa) {
if ("Always".equals(sa.getParam("AILogic"))) {
return true;
}
return false;
} // end animateAllCanPlayAI()