From 94dd9bc92f505ae44fee3baa541277658ad022cb Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 29 Apr 2015 10:59:24 +0200 Subject: [PATCH] * Spin into Myth - Fixed that the taregt card was wrongly moved to hand instead on top of the library. --- Mage.Sets/src/mage/sets/archenemy/SpinIntoMyth.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/sets/archenemy/SpinIntoMyth.java b/Mage.Sets/src/mage/sets/archenemy/SpinIntoMyth.java index e25da7383a..a06b14131b 100644 --- a/Mage.Sets/src/mage/sets/archenemy/SpinIntoMyth.java +++ b/Mage.Sets/src/mage/sets/archenemy/SpinIntoMyth.java @@ -29,7 +29,7 @@ package mage.sets.archenemy; import java.util.UUID; import mage.abilities.effects.Effect; -import mage.abilities.effects.common.ReturnToHandTargetEffect; +import mage.abilities.effects.common.PutOnLibraryTargetEffect; import mage.abilities.effects.keyword.FatesealEffect; import mage.cards.CardImpl; import mage.constants.CardType; @@ -46,10 +46,8 @@ public class SpinIntoMyth extends CardImpl { super(ownerId, 8, "Spin into Myth", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{4}{U}"); this.expansionSetCode = "ARC"; - this.color.setBlue(true); - // Put target creature on top of its owner's library, then fateseal 2. - this.getSpellAbility().addEffect(new ReturnToHandTargetEffect()); + this.getSpellAbility().addEffect(new PutOnLibraryTargetEffect(true)); this.getSpellAbility().addTarget(new TargetCreaturePermanent()); Effect effect = new FatesealEffect(2); effect.setText("then fateseal 2. (To fateseal 2, look at the top two cards of an opponent's library, then put any number of them on the bottom of that player's library and the rest on top in any order.)");