fixed Benthic Biomancer triggered ability being optional

This commit is contained in:
Evan Kranzler 2019-01-27 10:49:13 -05:00
parent c47b4d4fe1
commit 22971b63fa

View file

@ -20,7 +20,7 @@ public class OneOrMoreCountersAddedTriggeredAbility extends TriggeredAbilityImpl
}
public OneOrMoreCountersAddedTriggeredAbility(Effect effect, boolean optional, CounterType counterType) {
super(Zone.ALL, effect, true);
super(Zone.ALL, effect, optional);
this.counterType = counterType;
}