mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 03:08:02 +00:00
- Fixed condition.
This commit is contained in:
@@ -994,7 +994,7 @@ public class ComputerUtilCard {
|
|||||||
}
|
}
|
||||||
} else if (c.isPlaneswalker()) {
|
} else if (c.isPlaneswalker()) {
|
||||||
threat = 1;
|
threat = 1;
|
||||||
} else if (aic.getBooleanProperty(AiProps.ACTIVELY_DESTROY_ARTS_AND_NONAURA_ENCHS) && (c.isArtifact() && !c.isCreature()) || (c.isEnchantment() && !c.isAura())) {
|
} else if (aic.getBooleanProperty(AiProps.ACTIVELY_DESTROY_ARTS_AND_NONAURA_ENCHS) && ((c.isArtifact() && !c.isCreature()) || (c.isEnchantment() && !c.isAura()))) {
|
||||||
// non-creature artifacts and global enchantments with suspicious intrinsic abilities
|
// non-creature artifacts and global enchantments with suspicious intrinsic abilities
|
||||||
boolean priority = false;
|
boolean priority = false;
|
||||||
if (c.getOwner().isOpponentOf(ai) && c.getController().isOpponentOf(ai)) {
|
if (c.getOwner().isOpponentOf(ai) && c.getController().isOpponentOf(ai)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user