From ea6f0a3df3e6b683239df91e08b491a2cafb4723 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 10 Oct 2013 14:23:06 +0200 Subject: [PATCH] Some minor fixes to Idle Thoughts. --- Mage.Sets/src/mage/sets/eventide/IdleThoughts.java | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Mage.Sets/src/mage/sets/eventide/IdleThoughts.java b/Mage.Sets/src/mage/sets/eventide/IdleThoughts.java index 8ad19e9750..eda7a28f91 100644 --- a/Mage.Sets/src/mage/sets/eventide/IdleThoughts.java +++ b/Mage.Sets/src/mage/sets/eventide/IdleThoughts.java @@ -28,21 +28,15 @@ package mage.sets.eventide; import java.util.UUID; -import mage.abilities.Ability; import mage.abilities.common.SimpleActivatedAbility; -import mage.abilities.condition.Condition; import mage.abilities.condition.common.CardsInHandCondition; import mage.abilities.costs.mana.ManaCostsImpl; import mage.abilities.decorator.ConditionalOneShotEffect; -import mage.abilities.effects.OneShotEffect; import mage.abilities.effects.common.DrawCardControllerEffect; import mage.cards.CardImpl; import mage.constants.CardType; -import mage.constants.Outcome; import mage.constants.Rarity; import mage.constants.Zone; -import mage.game.Game; -import mage.players.Player; /** * @@ -58,8 +52,7 @@ public class IdleThoughts extends CardImpl { // {2}: Draw a card if you have no cards in hand. this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new ConditionalOneShotEffect( - new DrawCardControllerEffect(2), new CardsInHandCondition(), - "Draw a card if you have no cards in hand"), new ManaCostsImpl("{{2}}"))); + new DrawCardControllerEffect(2), new CardsInHandCondition(), "Draw a card if you have no cards in hand"), new ManaCostsImpl("{2}"))); } public IdleThoughts(final IdleThoughts card) {