Merge pull request #5059 from jgalrito/bug/ajani-adversary-of-tyrants-plus-1

fix Ajani Adversary of Tyrants +1
This commit is contained in:
theelk801 2018-06-22 16:23:56 -04:00 committed by GitHub
commit ee3f3c2fcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,7 @@ public final class AjaniAdversaryOfTyrants extends CardImpl {
this.addAbility(new PlanswalkerEntersWithLoyalityCountersAbility(4));
// +1: Put a +1/+1 counter on each of up to two target creatures.
Ability ability = new LoyaltyAbility(new AddCountersTargetEffect(CounterType.P1P1.createInstance()));
Ability ability = new LoyaltyAbility(new AddCountersTargetEffect(CounterType.P1P1.createInstance()), 1);
ability.addTarget(new TargetCreaturePermanent(0, 2));
this.addAbility(ability);