From 943004ea37b4bddb522169ad6c07ed1f1621957c Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Sun, 17 Sep 2017 22:32:55 -0400 Subject: [PATCH] fixed Entrancing Melody being an instant instead of a sorcery --- Mage.Sets/src/mage/cards/e/EntrancingMelody.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/e/EntrancingMelody.java b/Mage.Sets/src/mage/cards/e/EntrancingMelody.java index 8a49d375f06..04eed25ce3a 100644 --- a/Mage.Sets/src/mage/cards/e/EntrancingMelody.java +++ b/Mage.Sets/src/mage/cards/e/EntrancingMelody.java @@ -48,7 +48,7 @@ import mage.target.common.TargetCreaturePermanent; public class EntrancingMelody extends CardImpl { public EntrancingMelody(UUID ownerId, CardSetInfo setInfo) { - super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{X}{U}{U}"); + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{X}{U}{U}"); // Gain control of target creature with converted mana cost X. this.getSpellAbility().addEffect(new GainControlTargetEffect(Duration.Custom, true));