mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
fix PuppetConjurer to trigger only on controllers upkeep, fixes #8145
This commit is contained in:
parent
28d9d64112
commit
6c837e733b
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue