1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-03-30 01:03:57 -09:00

fix verify failure

This commit is contained in:
theelk801 2023-04-23 22:08:56 -04:00
parent 2fe8e12f71
commit 79503bd976

View file

@ -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>"
));
}