mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- JOU: Added Silence the Believers
This commit is contained in:
@@ -5566,11 +5566,12 @@ public class Card extends GameEntity implements Comparable<Card> {
|
||||
for (final SpellAbility sa : source.getCharacteristics().getSpellAbility()) {
|
||||
final List<Card> list = AbilityUtils.getDefinedCards(source, "Targeted", sa);
|
||||
for (final Card c : list) {
|
||||
if (!this.equipping.contains(c) && !c.equals(this.enchanting)) {
|
||||
return false;
|
||||
if (this.equipping.contains(c) || c.equals(this.enchanting)) { // handle multiple targets
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
if (((this.enchanting == null) || !this.enchanting.isValid(restriction, sourceController, source))
|
||||
|
||||
Reference in New Issue
Block a user