From 2ef4f33f78d269e669b080dc3ad1c8f33812ff23 Mon Sep 17 00:00:00 2001 From: xenohedron <12538125+xenohedron@users.noreply.github.com> Date: Tue, 24 Jun 2025 23:55:32 -0400 Subject: [PATCH] fix #13785 (Ballad of the Black Flag) --- Mage.Sets/src/mage/cards/b/BalladOfTheBlackFlag.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/b/BalladOfTheBlackFlag.java b/Mage.Sets/src/mage/cards/b/BalladOfTheBlackFlag.java index a6a9df732da..786bd942454 100644 --- a/Mage.Sets/src/mage/cards/b/BalladOfTheBlackFlag.java +++ b/Mage.Sets/src/mage/cards/b/BalladOfTheBlackFlag.java @@ -6,6 +6,7 @@ import mage.abilities.effects.common.cost.SpellsCostReductionControllerEffect; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; +import mage.constants.Duration; import mage.constants.SagaChapter; import mage.constants.SubType; import mage.filter.FilterCard; @@ -40,7 +41,8 @@ public final class BalladOfTheBlackFlag extends CardImpl { // IV - Historic spells you cast this turn cost {2} less to cast. sagaAbility.addChapterEffect( this, SagaChapter.CHAPTER_IV, - new SpellsCostReductionControllerEffect(filter, 2) + new SpellsCostReductionControllerEffect(filter, 2).setDuration(Duration.EndOfTurn) + .setText("historic spells you cast this turn cost {2} less to cast") ); this.addAbility(sagaAbility);