mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
fix #7817 , ability was added twice
This commit is contained in:
parent
6eef8f9e0c
commit
b640646cab
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ public final class NilsDisciplineEnforcer extends CardImpl {
|
||||||
|
|
||||||
// At the beginning of your end step, for each player, put a +1/+1 counter on up to one target creature that player controls.
|
// At the beginning of your end step, for each player, put a +1/+1 counter on up to one target creature that player controls.
|
||||||
Ability ability = new BeginningOfEndStepTriggeredAbility(
|
Ability ability = new BeginningOfEndStepTriggeredAbility(
|
||||||
new NilsDisciplineEnforcerEffect(), TargetController.YOU, false
|
new NilsDisciplineEnforcerCountersEffect(), TargetController.YOU, false
|
||||||
);
|
);
|
||||||
ability.setTargetAdjuster(NilsDisciplineEnforcerAdjuster.instance);
|
ability.setTargetAdjuster(NilsDisciplineEnforcerAdjuster.instance);
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
Loading…
Reference in a new issue