From 4e220aa5ebdcf1d7f800f5c13fd22a647350869c Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Mon, 21 Sep 2020 17:40:11 -0400 Subject: [PATCH] [ZNR] fixed Myriad Construct text (#7044) --- Mage.Sets/src/mage/cards/m/MyriadConstruct.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/m/MyriadConstruct.java b/Mage.Sets/src/mage/cards/m/MyriadConstruct.java index 5dd9fab405e..ed9b9fc8cf9 100644 --- a/Mage.Sets/src/mage/cards/m/MyriadConstruct.java +++ b/Mage.Sets/src/mage/cards/m/MyriadConstruct.java @@ -64,7 +64,7 @@ public final class MyriadConstruct extends CardImpl { new SacrificeSourceEffect().setText("sacrifice it"), StaticFilters.FILTER_SPELL_A ); ability.addEffect(new CreateTokenEffect(new ConstructToken(), xValue2) - .setText("and create a number of 1/1 colourless Construct artifact creature tokens equal to its power")); + .setText("and create a number of 1/1 colorless Construct artifact creature tokens equal to its power")); this.addAbility(ability); }