diff --git a/forge-game/src/main/java/forge/game/card/Card.java b/forge-game/src/main/java/forge/game/card/Card.java index 65ecf7b1716..b0366f05306 100644 --- a/forge-game/src/main/java/forge/game/card/Card.java +++ b/forge-game/src/main/java/forge/game/card/Card.java @@ -5566,11 +5566,12 @@ public class Card extends GameEntity implements Comparable { for (final SpellAbility sa : source.getCharacteristics().getSpellAbility()) { final List 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)) diff --git a/forge-gui/res/cardsfolder/t/tribute_to_the_wild.txt b/forge-gui/res/cardsfolder/t/tribute_to_the_wild.txt index a57c8070205..93cd9fc1e53 100644 --- a/forge-gui/res/cardsfolder/t/tribute_to_the_wild.txt +++ b/forge-gui/res/cardsfolder/t/tribute_to_the_wild.txt @@ -1,6 +1,6 @@ Name:Tribute to the Wild ManaCost:1 G Types:Instant -A:SP$ Sacrifice | Cost$ 1 G | Defined$ Opponent | SacValid$ Artifact,Enchantment | SacMessage$ artifact or enchantment | SpellDescription$ Each opponent sacrifices an artifact or enchantment. +A:SP$ Sacrifice | Cost$ 1 G | Defined$ Player.Opponent | SacValid$ Artifact,Enchantment | SacMessage$ artifact or enchantment | SpellDescription$ Each opponent sacrifices an artifact or enchantment. SVar:Picture:http://www.wizards.com/global/images/magic/general/tribute_to_the_wild.jpg Oracle:Each opponent sacrifices an artifact or enchantment. \ No newline at end of file