From eaaf68350cb5903b149172fcf8b3c06f6b420e23 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Fri, 11 Sep 2020 18:21:13 -0400 Subject: [PATCH] [ZNR] fixed Scute Swarm not creating the right tokens (#7046) --- Mage.Sets/src/mage/cards/s/ScuteSwarm.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/s/ScuteSwarm.java b/Mage.Sets/src/mage/cards/s/ScuteSwarm.java index 283a98a2d3a..b3a42fb92d9 100644 --- a/Mage.Sets/src/mage/cards/s/ScuteSwarm.java +++ b/Mage.Sets/src/mage/cards/s/ScuteSwarm.java @@ -42,7 +42,7 @@ public final class ScuteSwarm extends CardImpl { // Landfall — Whenever a land enters the battlefield under your control, create a 1/1 green Insect creature token. If you control six or more lands, create a token that's a copy of Scute Swarm instead. this.addAbility(new LandfallAbility(new ConditionalOneShotEffect( - new CreateTokenEffect(new InsectToken()), new CreateTokenCopySourceEffect(), + new CreateTokenCopySourceEffect(), new CreateTokenEffect(new InsectToken()), condition, "create a 1/1 green Insect creature token. If you control six or more lands, " + "create a token that's a copy of {this} instead" )).addHint(hint));