[ZNR] fixed Strength of Solidarity putting at least one counter (#7046)

This commit is contained in:
Evan Kranzler 2020-09-11 19:59:55 -04:00
parent fd100422bd
commit 047a31b5c0

View file

@ -21,7 +21,7 @@ public final class StrengthOfSolidarity extends CardImpl {
// Choose target creature you control. Put a +1/+1 counter on it for each creature in your party. // Choose target creature you control. Put a +1/+1 counter on it for each creature in your party.
this.getSpellAbility().addEffect(new AddCountersTargetEffect( this.getSpellAbility().addEffect(new AddCountersTargetEffect(
CounterType.P1P1.createInstance(), PartyCount.instance CounterType.P1P1.createInstance(0), PartyCount.instance
).setText("Choose target creature you control. Put a +1/+1 counter on it for each creature in your party.")); ).setText("Choose target creature you control. Put a +1/+1 counter on it for each creature in your party."));
this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent()); this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent());
this.getSpellAbility().addHint(PartyCountHint.instance); this.getSpellAbility().addHint(PartyCountHint.instance);