From 365754b6f746eeddf93f2d53730c01026d48c242 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 25 May 2020 17:17:17 +0200 Subject: [PATCH] * Fixed token creation of Shark Typhoon (fixes #6572). --- Mage.Sets/src/mage/cards/s/SharkTyphoon.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/s/SharkTyphoon.java b/Mage.Sets/src/mage/cards/s/SharkTyphoon.java index 51346842858..8753458c499 100644 --- a/Mage.Sets/src/mage/cards/s/SharkTyphoon.java +++ b/Mage.Sets/src/mage/cards/s/SharkTyphoon.java @@ -31,7 +31,7 @@ public final class SharkTyphoon extends CardImpl { // Whenever you cast a noncreature spell, create an X/X blue Shark creature token with flying, where X is that spell's converted mana cost. this.addAbility(new SpellCastControllerTriggeredAbility( - new SharkTyphoonCastEffect(), StaticFilters.FILTER_SPELL_A_NON_CREATURE, false + new SharkTyphoonCastEffect(), StaticFilters.FILTER_SPELL_A_NON_CREATURE, false, true )); // Cycling {X}{1}{U} @@ -69,7 +69,7 @@ class SharkTyphoonCastEffect extends OneShotEffect { @Override public boolean apply(Game game, Ability source) { - Spell spell = game.getSpell(targetPointer.getFirst(game, source)); + Spell spell = game.getSpell(getTargetPointer().getFirst(game, source)); int xValue = 0; if (spell != null) { xValue = spell.getConvertedManaCost();