From 7632cb417cdc3db61bd01666bf6e868f0a037340 Mon Sep 17 00:00:00 2001 From: arcox <10953229+arcox@users.noreply.github.com> Date: Thu, 25 Jun 2020 22:37:23 -0400 Subject: [PATCH] Fix Track Down oracle text (#6643) --- Mage.Sets/src/mage/cards/t/TrackDown.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/cards/t/TrackDown.java b/Mage.Sets/src/mage/cards/t/TrackDown.java index 468de325764..e7128ae629a 100644 --- a/Mage.Sets/src/mage/cards/t/TrackDown.java +++ b/Mage.Sets/src/mage/cards/t/TrackDown.java @@ -3,7 +3,6 @@ package mage.cards.t; import mage.MageObject; import mage.abilities.Ability; import mage.abilities.effects.OneShotEffect; -import mage.abilities.effects.keyword.ScryEffect; import mage.cards.Card; import mage.cards.CardImpl; import mage.cards.CardSetInfo; @@ -23,8 +22,7 @@ public final class TrackDown extends CardImpl { public TrackDown(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{G}"); - // Scry 3, then reveal the top card of your library. If it’s a creature or land card, draw a card. - this.getSpellAbility().addEffect(new ScryEffect(3)); + // Scry 3, then reveal the top card of your library. If it's a creature or land card, draw a card. this.getSpellAbility().addEffect(new TrackDownEffect()); } @@ -42,7 +40,7 @@ class TrackDownEffect extends OneShotEffect { public TrackDownEffect() { super(Outcome.DrawCard); - this.staticText = "then reveal the top card of your library. If it's a creature or land card, draw a card"; + this.staticText = "Scry 3, then reveal the top card of your library. If it's a creature or land card, draw a card"; } public TrackDownEffect(final TrackDownEffect effect) { @@ -67,6 +65,8 @@ class TrackDownEffect extends OneShotEffect { return false; } + controller.scry(3, source, game); + Card card = controller.getLibrary().getFromTop(game); if (card == null) { return false;