From c60eb4d131fc51164f9ce88c2be2eece236e7660 Mon Sep 17 00:00:00 2001 From: magenoxx Date: Thu, 15 Mar 2012 20:35:40 +0400 Subject: [PATCH] non utf-8 symbol fix --- Mage.Sets/src/mage/sets/darkascension/ClingingMists.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/sets/darkascension/ClingingMists.java b/Mage.Sets/src/mage/sets/darkascension/ClingingMists.java index bf83b85f146..11a42f3cbc2 100644 --- a/Mage.Sets/src/mage/sets/darkascension/ClingingMists.java +++ b/Mage.Sets/src/mage/sets/darkascension/ClingingMists.java @@ -27,7 +27,6 @@ */ package mage.sets.darkascension; -import java.util.UUID; import mage.Constants; import mage.Constants.CardType; import mage.Constants.Rarity; @@ -43,7 +42,8 @@ import mage.filter.common.FilterAttackingCreature; import mage.game.Game; import mage.game.events.GameEvent; import mage.game.permanent.Permanent; -import mage.players.Player; + +import java.util.UUID; /** * @@ -62,7 +62,7 @@ public class ClingingMists extends CardImpl { // Prevent all combat damage that would be dealt this turn. this.getSpellAbility().addEffect(new PreventAllDamageEffect(filter, Constants.Duration.EndOfTurn, true)); - // Fateful hour — If you have 5 or less life, tap all attacking creatures. Those creatures don't untap during their controller's next untap step. + // Fateful hour - If you have 5 or less life, tap all attacking creatures. Those creatures don't untap during their controller's next untap step. this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new ClingingMistsEffect(), FatefulHourCondition.getInstance(), "If you have 5 or less life, tap all attacking creatures. Those creatures don't untap during their controller's next untap step."));