From e2030aead9c0882498eaed3eec88194b7958e1bd Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sat, 29 Jun 2019 18:04:15 +0400 Subject: [PATCH] Merge fix --- Mage.Sets/src/mage/cards/t/TalesEnd.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/cards/t/TalesEnd.java b/Mage.Sets/src/mage/cards/t/TalesEnd.java index 1188d08c4b9..bd4256bfbe8 100644 --- a/Mage.Sets/src/mage/cards/t/TalesEnd.java +++ b/Mage.Sets/src/mage/cards/t/TalesEnd.java @@ -1,25 +1,22 @@ package mage.cards.t; -import java.util.UUID; - import mage.abilities.effects.common.CounterTargetEffect; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; import mage.target.common.TargetActivatedOrTriggeredAbilityOrLegendarySpell; +import java.util.UUID; + /** - * * @author rscoates */ public final class TalesEnd extends CardImpl { public TalesEnd(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{U}"); - // Counter target activated ability, triggered ability, or legendary spell. - // Counter target activated or triggered ability. this.getSpellAbility().addEffect(new CounterTargetEffect()); this.getSpellAbility().addTarget(new TargetActivatedOrTriggeredAbilityOrLegendarySpell()); }