diff --git a/Mage.Sets/src/mage/cards/d/DiplomaticRelations.java b/Mage.Sets/src/mage/cards/d/DiplomaticRelations.java index d0fe0dfeb8e..54ce8343623 100644 --- a/Mage.Sets/src/mage/cards/d/DiplomaticRelations.java +++ b/Mage.Sets/src/mage/cards/d/DiplomaticRelations.java @@ -7,7 +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.TargetControlledCreaturePermanent; import mage.target.common.TargetOpponentsCreaturePermanent; import java.util.UUID; @@ -20,11 +20,11 @@ public final class DiplomaticRelations extends CardImpl { public DiplomaticRelations(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{G}"); - // Target creature gets +1/+0 and gains vigilance until end of turn. It deals damage equal to its power to target creature an opponent controls. + // Target creature you control gets +1/+0 and gains vigilance until end of turn. It deals damage equal to its power to target creature an opponent controls. 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().addTarget(new TargetControlledCreaturePermanent()); this.getSpellAbility().addEffect(new DamageWithPowerFromOneToAnotherTargetEffect("it")); this.getSpellAbility().addTarget(new TargetOpponentsCreaturePermanent()); }