mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[ZNR] fixed Scute Swarm not creating the right tokens (#7046)
This commit is contained in:
parent
cad6b86691
commit
eaaf68350c
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue