From d7b36e1736b155e09fbdea6bbc69dbdc0cbbec67 Mon Sep 17 00:00:00 2001 From: Zzooouhh Date: Fri, 13 Oct 2017 00:45:26 +0200 Subject: [PATCH] Text edit --- Mage.Sets/src/mage/cards/h/HailStorm.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/h/HailStorm.java b/Mage.Sets/src/mage/cards/h/HailStorm.java index a0c52a3e50a..5ee36723325 100644 --- a/Mage.Sets/src/mage/cards/h/HailStorm.java +++ b/Mage.Sets/src/mage/cards/h/HailStorm.java @@ -54,8 +54,8 @@ public class HailStorm extends CardImpl { // Hail Storm deals 2 damage to each attacking creature and 1 damage to you and each creature you control. this.getSpellAbility().addEffect(new DamageAllEffect(2, new FilterAttackingCreature())); - this.getSpellAbility().addEffect(new DamageControllerEffect(1)); - this.getSpellAbility().addEffect(new DamageAllEffect(1, filter)); + this.getSpellAbility().addEffect(new DamageControllerEffect(1).setText("and 1 damage to you ")); + this.getSpellAbility().addEffect(new DamageAllEffect(1, filter).setText("and each creature you control.")); } public HailStorm(final HailStorm card) {