From 2dc502b535eec39f29f9eb7a3e46c3aa3d42373f Mon Sep 17 00:00:00 2001 From: arcox <10953229+arcox@users.noreply.github.com> Date: Fri, 26 Jun 2020 01:02:34 -0400 Subject: [PATCH] Fix Choking Vines oracle text --- Mage.Sets/src/mage/cards/c/ChokingVines.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); }