Vastwood Hydra - fixed wrong target settings

This commit is contained in:
Oleg Agafonov 2023-09-06 22:58:00 +04:00
parent 721ee59709
commit e76066e939

View file

@ -46,7 +46,7 @@ public final class VastwoodHydra extends CardImpl {
// When Vastwood Hydra dies, you may distribute a number of +1/+1 counters equal to the number of +1/+1 counters on Vastwood Hydra among any number of creatures you control.
Ability ability = new DiesSourceTriggeredAbility(new VastwoodHydraDistributeEffect(), true);
ability.addTarget(new TargetCreaturePermanentAmount(new CountersSourceCount(CounterType.P1P1), filter));
ability.addTarget(new TargetCreaturePermanentAmount(new CountersSourceCount(CounterType.P1P1), filter).withNotTarget(true));
this.addAbility(ability);
}