From f8c94e1d62bdb579d633fa87a0378aaa86e53c3a Mon Sep 17 00:00:00 2001 From: PurpleCrowbar Date: Mon, 6 Jun 2022 19:59:34 +0100 Subject: [PATCH] [CLB] Fixed 'The Council Of Four' creating wrong token --- Mage.Sets/src/mage/cards/t/TheCouncilOfFour.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/t/TheCouncilOfFour.java b/Mage.Sets/src/mage/cards/t/TheCouncilOfFour.java index 981e10a860f..0564008a997 100644 --- a/Mage.Sets/src/mage/cards/t/TheCouncilOfFour.java +++ b/Mage.Sets/src/mage/cards/t/TheCouncilOfFour.java @@ -11,7 +11,7 @@ import mage.constants.CardType; import mage.constants.SubType; import mage.constants.SuperType; import mage.constants.TargetController; -import mage.game.permanent.token.KnightToken; +import mage.game.permanent.token.WaylayToken; import java.util.UUID; @@ -38,7 +38,7 @@ public final class TheCouncilOfFour extends CardImpl { // Whenever a player casts their second spell during their turn, you create a 2/2 white Knight creature token. this.addAbility(new CastSecondSpellTriggeredAbility( - new CreateTokenEffect(new KnightToken()) + new CreateTokenEffect(new WaylayToken()) .setText("you create a 2/2 white Knight creature token"), TargetController.ACTIVE ));