From 6714a092b2a83cd59bb29b6ddd06adfcd2fc9f10 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 14 Jan 2020 23:45:19 +0100 Subject: [PATCH] * Thryx, the Sudden Storm - Fixed that the cost reduction ability was not added to the card. --- Mage.Sets/src/mage/cards/t/ThryxTheSuddenStorm.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/t/ThryxTheSuddenStorm.java b/Mage.Sets/src/mage/cards/t/ThryxTheSuddenStorm.java index a975fca77c5..422f71966b2 100644 --- a/Mage.Sets/src/mage/cards/t/ThryxTheSuddenStorm.java +++ b/Mage.Sets/src/mage/cards/t/ThryxTheSuddenStorm.java @@ -1,5 +1,6 @@ package mage.cards.t; +import java.util.UUID; import mage.MageInt; import mage.abilities.Ability; import mage.abilities.common.SimpleStaticAbility; @@ -15,8 +16,6 @@ import mage.filter.FilterSpell; import mage.filter.predicate.Predicate; import mage.filter.predicate.mageobject.ConvertedManaCostPredicate; -import java.util.UUID; - /** * @author TheElk801 */ @@ -52,6 +51,7 @@ public final class ThryxTheSuddenStorm extends CardImpl { ability.addEffect(new CantBeCounteredControlledEffect( filter2, null, Duration.WhileOnBattlefield ).setText("and can't be countered")); + this.addAbility(ability); } private ThryxTheSuddenStorm(final ThryxTheSuddenStorm card) {