From 21c8b0e01c14503cf21537e3401897b403c1b5a7 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 15 Apr 2015 15:31:15 +0200 Subject: [PATCH] * Tooth and Nail - Fixed that the searched cards were not revealed and not shown in the log. --- Mage.Sets/src/mage/sets/modernmasters/ToothAndNail.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/sets/modernmasters/ToothAndNail.java b/Mage.Sets/src/mage/sets/modernmasters/ToothAndNail.java index 48720ba022e..3902ef10adc 100644 --- a/Mage.Sets/src/mage/sets/modernmasters/ToothAndNail.java +++ b/Mage.Sets/src/mage/sets/modernmasters/ToothAndNail.java @@ -55,11 +55,9 @@ public class ToothAndNail extends CardImpl { super(ownerId, 170, "Tooth and Nail", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{5}{G}{G}"); this.expansionSetCode = "MMA"; - this.color.setGreen(true); - // Choose one - // Search your library for up to two creature cards, reveal them, put them into your hand, then shuffle your library; - this.getSpellAbility().addEffect(new SearchLibraryPutInHandEffect(new TargetCardInLibrary(0, 2, new FilterCreatureCard()))); + this.getSpellAbility().addEffect(new SearchLibraryPutInHandEffect(new TargetCardInLibrary(0, 2, new FilterCreatureCard()), true)); // or put up to two creature cards from your hand onto the battlefield. Mode mode = new Mode(); mode.getEffects().add(new ToothAndNailPutCreatureOnBattlefieldEffect());