From 1b4145e5b8ca0481babe4ca25ad81ba11ac2d4fd Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Tue, 7 Jan 2020 06:10:05 +0400 Subject: [PATCH] fixed Eutropia the Twice-Favored (missing target) --- Mage.Sets/src/mage/cards/e/EutropiaTheTwiceFavored.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/cards/e/EutropiaTheTwiceFavored.java b/Mage.Sets/src/mage/cards/e/EutropiaTheTwiceFavored.java index e4f3fd52c1a..69e5bb0b175 100644 --- a/Mage.Sets/src/mage/cards/e/EutropiaTheTwiceFavored.java +++ b/Mage.Sets/src/mage/cards/e/EutropiaTheTwiceFavored.java @@ -13,6 +13,7 @@ import mage.constants.Duration; import mage.constants.SubType; import mage.constants.SuperType; import mage.counters.CounterType; +import mage.target.common.TargetCreaturePermanent; import java.util.UUID; @@ -38,6 +39,7 @@ public final class EutropiaTheTwiceFavored extends CardImpl { FlyingAbility.getInstance(), Duration.EndOfTurn, "That creature gains flying until end of turn" )); + ability.addTarget(new TargetCreaturePermanent()); this.addAbility(ability); }