mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
[MH2] fixed Junk Winder cost reduction not applying correctly (fixes #7916)
This commit is contained in:
parent
7c9b8e5a29
commit
4bdd4cb66d
1 changed files with 2 additions and 1 deletions
|
@ -15,6 +15,7 @@ import mage.cards.CardSetInfo;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.TargetController;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterControlledPermanent;
|
||||
import mage.filter.common.FilterNonlandPermanent;
|
||||
|
@ -46,7 +47,7 @@ public final class JunkWinder extends CardImpl {
|
|||
this.toughness = new MageInt(6);
|
||||
|
||||
// Affinity for tokens
|
||||
this.addAbility(new SimpleStaticAbility(new AffinityEffect(filter)).addHint(hint));
|
||||
this.addAbility(new SimpleStaticAbility(Zone.ALL, new AffinityEffect(filter)).addHint(hint));
|
||||
|
||||
// Whenever a token enters the battlefield under your control, tap target nonland permanent an opponent controls. It doesn't untap during its controller's next untap step.
|
||||
Ability ability = new EntersBattlefieldControlledTriggeredAbility(
|
||||
|
|
Loading…
Reference in a new issue