From 29e707617676a6f51fbcbfee1fb58285021bf96b Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Wed, 16 Sep 2020 17:13:22 -0400 Subject: [PATCH] [ZNR] fixed Allied Assault targeting incorrectly (#7046) --- Mage.Sets/src/mage/cards/a/AlliedAssault.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/a/AlliedAssault.java b/Mage.Sets/src/mage/cards/a/AlliedAssault.java index 16e0a26a313..71756bf8289 100644 --- a/Mage.Sets/src/mage/cards/a/AlliedAssault.java +++ b/Mage.Sets/src/mage/cards/a/AlliedAssault.java @@ -25,7 +25,7 @@ public final class AlliedAssault extends CardImpl { ).setText("up to two target creatures each get +X/+X until end of turn, " + "where X is the number of creatures in your party. " + PartyCount.getReminder() )); - this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 1)); + this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 2)); this.getSpellAbility().addHint(PartyCountHint.instance); }