forked from External/mage
Fixed Primal Wellspring and Pyromancer's Goggles being optional triggers
This commit is contained in:
parent
ff4445d181
commit
0b5bd900a6
2 changed files with 3 additions and 3 deletions
|
|
@ -81,7 +81,7 @@ class PyrimalWellspringTriggeredAbility extends TriggeredAbilityImpl {
|
|||
String abilityOriginalId;
|
||||
|
||||
public PyrimalWellspringTriggeredAbility(UUID abilityOriginalId, Effect effect) {
|
||||
super(Zone.ALL, effect, true);
|
||||
super(Zone.ALL, effect, false);
|
||||
this.abilityOriginalId = abilityOriginalId.toString();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ import mage.target.targetpointer.FixedTarget;
|
|||
public class PyromancersGoggles extends CardImpl {
|
||||
|
||||
public PyromancersGoggles(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{5}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{5}");
|
||||
addSuperType(SuperType.LEGENDARY);
|
||||
|
||||
// {T}: Add {R} to your mana pool.
|
||||
|
|
@ -89,7 +89,7 @@ class PyromancersGogglesTriggeredAbility extends TriggeredAbilityImpl {
|
|||
String abilityOriginalId;
|
||||
|
||||
public PyromancersGogglesTriggeredAbility(UUID abilityOriginalId, Effect effect) {
|
||||
super(Zone.ALL, effect, true);
|
||||
super(Zone.ALL, effect, false);
|
||||
this.abilityOriginalId = abilityOriginalId.toString();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue