mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
- Allow the AI to confirm a ChangeZone event with unpreferred targeting if its AI Logic is set to Always.
This commit is contained in:
@@ -1177,7 +1177,9 @@ public class ChangeZoneAi extends SpellAbilityAi {
|
||||
|
||||
private static boolean isUnpreferredTarget(final Player ai, final SpellAbility sa, final boolean mandatory) {
|
||||
if (!mandatory) {
|
||||
return false;
|
||||
if (!"Always".equals(sa.getParam("AILogic"))) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
final Card source = sa.getHostCard();
|
||||
|
||||
Reference in New Issue
Block a user