mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
Merge pull request #2395 from Fr33dan/master
Fix Fairgrounds Trumpeter triggering only on controller's end step.
This commit is contained in:
commit
bc5a53632f
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…
Add table
Add a link
Reference in a new issue