diff --git a/Mage.Sets/src/mage/cards/c/ChokingVines.java b/Mage.Sets/src/mage/cards/c/ChokingVines.java index 24b284da908..3dce3af1475 100644 --- a/Mage.Sets/src/mage/cards/c/ChokingVines.java +++ b/Mage.Sets/src/mage/cards/c/ChokingVines.java @@ -37,7 +37,8 @@ public final class ChokingVines extends CardImpl { // X target attacking creatures become blocked. Choking Vines deals 1 damage to each of those creatures. this.getSpellAbility().addEffect(new ChokingVinesEffect()); - this.getSpellAbility().addEffect(new DamageTargetEffect(1)); + this.getSpellAbility().addEffect(new DamageTargetEffect(1) + .setText("{this} deals 1 damage to each of those creatures")); this.getSpellAbility().setTargetAdjuster(ChokingVinesAdjuster.instance); }