From 87cf8a9df6424063b4430e5ab8a6eb0ed0ad5713 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sun, 19 Apr 2020 21:40:28 +0400 Subject: [PATCH] [IKO] Emergent Ultimatum - fixed text; --- Mage.Sets/src/mage/cards/e/EmergentUltimatum.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/e/EmergentUltimatum.java b/Mage.Sets/src/mage/cards/e/EmergentUltimatum.java index f26be5c2cb1..004297319db 100644 --- a/Mage.Sets/src/mage/cards/e/EmergentUltimatum.java +++ b/Mage.Sets/src/mage/cards/e/EmergentUltimatum.java @@ -14,7 +14,6 @@ import mage.filter.StaticFilters; import mage.filter.predicate.mageobject.MonocoloredPredicate; import mage.game.Game; import mage.players.Player; -import mage.target.TargetCard; import mage.target.common.TargetCardInExile; import mage.target.common.TargetCardInLibrary; import mage.target.common.TargetOpponent; @@ -50,7 +49,7 @@ class EmergentUltimatumEffect extends OneShotEffect { super(Outcome.Benefit); staticText = "Search your library for up to three monocolored cards with different names and exile them. " + "An opponent chooses one of those cards. Shuffle that card into your library. " + - "You may cast the other cards without paying their mana costs."; + "You may cast the other cards without paying their mana costs"; } private EmergentUltimatumEffect(final EmergentUltimatumEffect effect) { @@ -100,7 +99,7 @@ class EmergentUltimatumEffect extends OneShotEffect { if (!player.chooseUse(Outcome.PlayForFree, "Cast an exiled card without paying its mana cost?", source, game)) { break; } - targetCardInExile.clearChosen(); + targetCardInExile.clearChosen(); if (!player.choose(Outcome.PlayForFree, cards, targetCardInExile, game)) { continue; }