From 1e7138e8f655bb650ff63a048d43bab121c0fc57 Mon Sep 17 00:00:00 2001 From: Li REN Date: Thu, 18 Jul 2013 18:06:23 -0400 Subject: [PATCH] * Awaken The Ancient - fix it's effect's duration --- Mage.Sets/src/mage/sets/magic2014/AwakenTheAncient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/magic2014/AwakenTheAncient.java b/Mage.Sets/src/mage/sets/magic2014/AwakenTheAncient.java index a1db0264a2..d4ce2e2e59 100644 --- a/Mage.Sets/src/mage/sets/magic2014/AwakenTheAncient.java +++ b/Mage.Sets/src/mage/sets/magic2014/AwakenTheAncient.java @@ -74,7 +74,7 @@ public class AwakenTheAncient extends CardImpl { this.addAbility(ability); // Enchanted Mountain is a 7/7 red Giant creature with haste. It's still a land. - Ability ability2 = new SimpleStaticAbility(Zone.BATTLEFIELD, new BecomesCreatureAttachedEffect(new GiantToken(), "Enchanted Mountain is a 7/7 red Giant creature with haste. It's still a land", Duration.EndOfTurn)); + Ability ability2 = new SimpleStaticAbility(Zone.BATTLEFIELD, new BecomesCreatureAttachedEffect(new GiantToken(), "Enchanted Mountain is a 7/7 red Giant creature with haste. It's still a land", Duration.Custom)); this.addAbility(ability2); }