mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
- PermanentAi: commented out the check of Planeswalker uniqueness by subtype (no longer relevant past Ixalan).
This commit is contained in:
@@ -62,6 +62,8 @@ public class PermanentAi extends SpellAbilityAi {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* -- not used anymore after Ixalan (Planeswalkers are now legendary, not unique by subtype) --
|
||||||
if (card.isPlaneswalker()) {
|
if (card.isPlaneswalker()) {
|
||||||
CardCollection list = CardLists.filter(ai.getCardsIn(ZoneType.Battlefield),
|
CardCollection list = CardLists.filter(ai.getCardsIn(ZoneType.Battlefield),
|
||||||
CardPredicates.Presets.PLANEWALKERS);
|
CardPredicates.Presets.PLANEWALKERS);
|
||||||
@@ -75,7 +77,7 @@ public class PermanentAi extends SpellAbilityAi {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
|
|
||||||
if (card.getType().hasSupertype(Supertype.World)) {
|
if (card.getType().hasSupertype(Supertype.World)) {
|
||||||
CardCollection list = CardLists.getType(ai.getCardsIn(ZoneType.Battlefield), "World");
|
CardCollection list = CardLists.getType(ai.getCardsIn(ZoneType.Battlefield), "World");
|
||||||
|
|||||||
Reference in New Issue
Block a user