fix PuppetConjurer to trigger only on controllers upkeep, fixes #8145

This commit is contained in:
Ingmar Goudt 2021-08-22 10:57:57 +02:00
parent 28d9d64112
commit 6c837e733b

View file

@ -44,7 +44,7 @@ public final class PuppetConjurer extends CardImpl {
ability.addCost(new TapSourceCost());
this.addAbility(ability);
// At the beginning of your upkeep, sacrifice a Homunculus.
this.addAbility(new BeginningOfUpkeepTriggeredAbility(new SacrificeEffect(filter, 1, ""), TargetController.ANY, false));
this.addAbility(new BeginningOfUpkeepTriggeredAbility(new SacrificeEffect(filter, 1, ""), TargetController.YOU, false));
}
private PuppetConjurer(final PuppetConjurer card) {