From 79503bd976cb415c232e88b7539dc721266048cc Mon Sep 17 00:00:00 2001 From: theelk801 <theelk801@gmail.com> Date: Sun, 23 Apr 2023 22:08:56 -0400 Subject: [PATCH] fix verify failure --- Mage.Sets/src/mage/cards/c/CarnivorousCanopy.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/c/CarnivorousCanopy.java b/Mage.Sets/src/mage/cards/c/CarnivorousCanopy.java index f68607736f..42607494d0 100644 --- a/Mage.Sets/src/mage/cards/c/CarnivorousCanopy.java +++ b/Mage.Sets/src/mage/cards/c/CarnivorousCanopy.java @@ -49,7 +49,8 @@ public final class CarnivorousCanopy extends CardImpl { this.getSpellAbility().addEffect(new DestroyTargetEffect()); this.getSpellAbility().addTarget(new TargetPermanent(filter)); this.getSpellAbility().addEffect(new ConditionalOneShotEffect( - new ProliferateEffect(), condition, "If that permanent's mana value was 3 or less, proliferate" + new ProliferateEffect(), condition, "If that permanent's mana value was 3 or less, proliferate. " + + "<i>(Choose any number of permanents and/or players, then give each another counter of each kind already there.)</i>" )); }