mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Merge pull request #5059 from jgalrito/bug/ajani-adversary-of-tyrants-plus-1
fix Ajani Adversary of Tyrants +1
This commit is contained in:
commit
ee3f3c2fcc
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue