From 4c60eba7e6b6d8b86a8300e587185977ff7afe6a Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 13 May 2015 17:32:40 +0200 Subject: [PATCH] * Taj-Nar Swordsmith - Fixed that the searched card was returned to hand instead correctly to battlefield. --- Mage.Sets/src/mage/sets/mirrodin/TajNarSwordsmith.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/mirrodin/TajNarSwordsmith.java b/Mage.Sets/src/mage/sets/mirrodin/TajNarSwordsmith.java index 7d2f6ddd78c..355c3c258fe 100644 --- a/Mage.Sets/src/mage/sets/mirrodin/TajNarSwordsmith.java +++ b/Mage.Sets/src/mage/sets/mirrodin/TajNarSwordsmith.java @@ -34,7 +34,7 @@ import mage.abilities.common.EntersBattlefieldTriggeredAbility; import mage.abilities.costs.Cost; import mage.abilities.costs.mana.GenericManaCost; import mage.abilities.effects.OneShotEffect; -import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect; +import mage.abilities.effects.common.search.SearchLibraryPutInPlayEffect; import mage.cards.CardImpl; import mage.constants.CardType; import mage.constants.Outcome; @@ -101,7 +101,7 @@ class TajNarSwordsmithEffect extends OneShotEffect { FilterCard filter = new FilterCard("Equipment card with converted mana cost " + costX + " or less"); filter.add(new SubtypePredicate("Equipment")); filter.add(new ConvertedManaCostPredicate(ComparisonType.LessThan, costX + 1)); - new SearchLibraryPutInHandEffect(new TargetCardInLibrary(0, 1, filter), true, true).apply(game, source); + new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(0, 1, filter), false, true).apply(game, source); return true; } }