- JOU: Added Silence the Believers

This commit is contained in:
swordshine
2014-04-17 11:11:53 +00:00
parent 5159250da6
commit 277ba65f2d
2 changed files with 4 additions and 3 deletions

View File

@@ -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))