From 18e38817095ae3d5b1c017bf7d4c6bb41dcdba1e Mon Sep 17 00:00:00 2001 From: theelk801 Date: Fri, 18 Jul 2025 16:09:57 -0400 Subject: [PATCH] [EOE] add missing target to Diplomatic Relations --- Mage.Sets/src/mage/cards/d/DiplomaticRelations.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/cards/d/DiplomaticRelations.java b/Mage.Sets/src/mage/cards/d/DiplomaticRelations.java index ea57615fb60..d0fe0dfeb8e 100644 --- a/Mage.Sets/src/mage/cards/d/DiplomaticRelations.java +++ b/Mage.Sets/src/mage/cards/d/DiplomaticRelations.java @@ -7,6 +7,7 @@ import mage.abilities.keyword.VigilanceAbility; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; +import mage.target.common.TargetCreaturePermanent; import mage.target.common.TargetOpponentsCreaturePermanent; import java.util.UUID; @@ -23,6 +24,7 @@ public final class DiplomaticRelations extends CardImpl { this.getSpellAbility().addEffect(new BoostTargetEffect(1, 0)); this.getSpellAbility().addEffect(new GainAbilityTargetEffect(VigilanceAbility.getInstance()) .setText("and gains vigilance until end of turn")); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); this.getSpellAbility().addEffect(new DamageWithPowerFromOneToAnotherTargetEffect("it")); this.getSpellAbility().addTarget(new TargetOpponentsCreaturePermanent()); }