[ZNR] fixed Allied Assault targeting incorrectly (#7046)

This commit is contained in:
Evan Kranzler 2020-09-16 17:13:22 -04:00
parent 1db8d07cbd
commit 29e7076176

View file

@ -25,7 +25,7 @@ public final class AlliedAssault extends CardImpl {
).setText("up to two target creatures each get +X/+X until end of turn, " + ).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() "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); this.getSpellAbility().addHint(PartyCountHint.instance);
} }