From 2afd6f25f9344f5781fc65dd2932550b0cdbeb2b Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Mon, 5 Oct 2020 18:26:24 -0400 Subject: [PATCH] [IKO] fixed Shark Typhoon and spells which have left the stack (fixes #7117) --- Mage.Sets/src/mage/cards/s/SharkTyphoon.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/s/SharkTyphoon.java b/Mage.Sets/src/mage/cards/s/SharkTyphoon.java index 8753458c499..51924e4752c 100644 --- a/Mage.Sets/src/mage/cards/s/SharkTyphoon.java +++ b/Mage.Sets/src/mage/cards/s/SharkTyphoon.java @@ -69,7 +69,7 @@ class SharkTyphoonCastEffect extends OneShotEffect { @Override public boolean apply(Game game, Ability source) { - Spell spell = game.getSpell(getTargetPointer().getFirst(game, source)); + Spell spell = game.getSpellOrLKIStack(getTargetPointer().getFirst(game, source)); int xValue = 0; if (spell != null) { xValue = spell.getConvertedManaCost();