From c6f4332f2efbca2173ac39def26cb0c100ce2ea5 Mon Sep 17 00:00:00 2001 From: Dustin Ryan - Roepsch Date: Sun, 30 Apr 2017 17:29:39 -0500 Subject: [PATCH] fixed static text --- Mage.Sets/src/mage/cards/h/HeatStroke.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/h/HeatStroke.java b/Mage.Sets/src/mage/cards/h/HeatStroke.java index d261d2fae23..207ab4ff360 100644 --- a/Mage.Sets/src/mage/cards/h/HeatStroke.java +++ b/Mage.Sets/src/mage/cards/h/HeatStroke.java @@ -27,7 +27,10 @@ */ package mage.cards.h; +import mage.abilities.Ability; import mage.abilities.common.EndOfCombatTriggeredAbility; +import mage.abilities.effects.Effect; +import mage.abilities.effects.OneShotEffect; import mage.abilities.effects.common.DestroyAllEffect; import mage.cards.CardImpl; import mage.cards.CardSetInfo; @@ -37,6 +40,7 @@ import mage.filter.common.FilterCreaturePermanent; import mage.filter.predicate.Predicates; import mage.filter.predicate.permanent.BlockedPredicate; import mage.filter.predicate.permanent.BlockingPredicate; +import mage.game.Game; import java.util.UUID; @@ -59,7 +63,7 @@ public class HeatStroke extends CardImpl { // At end of combat, destroy each creature that blocked or was blocked this turn. this.addAbility( new EndOfCombatTriggeredAbility( - new DestroyAllEffect(filter), + new DestroyAllEffect(filter).setText("destroy each creature that blocked or was blocked this turn."), false ) ); @@ -74,3 +78,4 @@ public class HeatStroke extends CardImpl { return new HeatStroke(this); } } +