From 53e1f9ecacaa673b4a58390882a468ea295ccf8b Mon Sep 17 00:00:00 2001 From: Alex Vasile <48962821+Alex-Vasile@users.noreply.github.com> Date: Sun, 4 Sep 2022 19:05:34 -0400 Subject: [PATCH] [DMU] Fixed text on Tear Asunder --- Mage.Sets/src/mage/cards/t/TearAsunder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/t/TearAsunder.java b/Mage.Sets/src/mage/cards/t/TearAsunder.java index b1874586a9..120c5157a1 100644 --- a/Mage.Sets/src/mage/cards/t/TearAsunder.java +++ b/Mage.Sets/src/mage/cards/t/TearAsunder.java @@ -27,7 +27,7 @@ public final class TearAsunder extends CardImpl { this.addAbility(new KickerAbility("{1}{B}")); // Exile target artifact or enchantment. If this spell was kicked, exile target nonland permanent instead. - this.getSpellAbility().addEffect(new ExileTargetEffect()); + this.getSpellAbility().addEffect(new ExileTargetEffect().setText("Exile target artifact or enchantment. If this spell was kicked, exile target nonland permanent instead.")); this.getSpellAbility().setTargetAdjuster(TearAsunderAdjuster.instance); }