fixed adding saga counter not using the stack (this should be a state-based action though)

This commit is contained in:
Evan Kranzler 2018-04-22 21:16:09 -04:00
parent 35b78f8d11
commit 05070cff35

View file

@ -53,6 +53,7 @@ public class SagaAbility extends TriggeredAbilityImpl {
public SagaAbility(Card card, SagaChapter maxChapter) {
super(Zone.ALL, new AddCountersSourceEffect(CounterType.LORE.createInstance()), false);
this.usesStack = false;
this.maxChapter = maxChapter;
this.setRuleVisible(false);
((CardImpl) card).addAbility(new SagaAddCounterAbility(maxChapter));