mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
Fix Fairgrounds Trumpeter triggering only on controller's end step.
This commit is contained in:
parent
05f6224f8b
commit
6898313f0f
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ public class FairgroundsTrumpeter extends CardImpl {
|
||||||
// At the beginning of each end step, if a +1/+1 counter was placed on a permanent under your control this turn, put a +1/+1 counter on Fairgrounds Trumpeter.
|
// At the beginning of each end step, if a +1/+1 counter was placed on a permanent under your control this turn, put a +1/+1 counter on Fairgrounds Trumpeter.
|
||||||
this.addAbility(new ConditionalTriggeredAbility(new BeginningOfEndStepTriggeredAbility(
|
this.addAbility(new ConditionalTriggeredAbility(new BeginningOfEndStepTriggeredAbility(
|
||||||
new AddCountersSourceEffect(CounterType.P1P1.createInstance()),
|
new AddCountersSourceEffect(CounterType.P1P1.createInstance()),
|
||||||
TargetController.YOU, false), FairgroundsTrumpeterCondition.getInstance(),
|
TargetController.ANY, false), FairgroundsTrumpeterCondition.getInstance(),
|
||||||
"At the beginning of each end step, if a +1/+1 counter was placed on a permanent under your control this turn, put a +1/+1 counter on Fairgrounds Trumpeter."),
|
"At the beginning of each end step, if a +1/+1 counter was placed on a permanent under your control this turn, put a +1/+1 counter on Fairgrounds Trumpeter."),
|
||||||
new FairgroundsTrumpeterWatcher());
|
new FairgroundsTrumpeterWatcher());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue