From b3c5baee34ec2c30c9f38ce3a3f1076f0d69b3aa Mon Sep 17 00:00:00 2001 From: Daniel Bomar Date: Sun, 4 Apr 2021 13:28:26 -0500 Subject: [PATCH] [STX] Pest Summoning - Fixed using wrong token --- Mage.Sets/src/mage/cards/p/PestSummoning.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/p/PestSummoning.java b/Mage.Sets/src/mage/cards/p/PestSummoning.java index 361ee04dd40..65664350b2d 100644 --- a/Mage.Sets/src/mage/cards/p/PestSummoning.java +++ b/Mage.Sets/src/mage/cards/p/PestSummoning.java @@ -5,7 +5,7 @@ import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; import mage.constants.SubType; -import mage.game.permanent.token.PestToken; +import mage.game.permanent.token.WitherbloomToken; import java.util.UUID; @@ -20,7 +20,7 @@ public final class PestSummoning extends CardImpl { this.subtype.add(SubType.LESSON); // Create two 1/1 black and green Pest creature tokens with "When this creature dies, you gain 1 life." - this.getSpellAbility().addEffect(new CreateTokenEffect(new PestToken(), 2)); + this.getSpellAbility().addEffect(new CreateTokenEffect(new WitherbloomToken(), 2)); } private PestSummoning(final PestSummoning card) {