[IKO] fixed Shark Typhoon and spells which have left the stack (fixes #7117)

This commit is contained in:
Evan Kranzler 2020-10-05 18:26:24 -04:00
parent 39e2d79f91
commit 2afd6f25f9

View file

@ -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();