ChangeZoneAi

This commit is contained in:
Northmoc
2023-12-01 10:58:54 -05:00
parent fa3d1366fa
commit 26e16cd258

View File

@@ -740,7 +740,8 @@ public class ChangeZoneAi extends SpellAbilityAi {
// predict Legendary cards already present
boolean nothingWillReturn = true;
for (final Card c : retrieval) {
if (!(!c.ignoreLegendRule() && ai.isCardInPlay(c.getName()))) {
final boolean isCraftSa = sa.isCraft() && sa.getHostCard().equals(c);
if (isCraftSa || (!(!c.ignoreLegendRule() && ai.isCardInPlay(c.getName())))) {
nothingWillReturn = false;
break;
}