From d2dc70555ff9a1d190e528a976e2cd9043541b08 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sun, 15 Sep 2024 00:33:56 +0400 Subject: [PATCH] Cursed Recording - fixed that trigger is optional; --- Mage.Sets/src/mage/cards/c/CursedRecording.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/c/CursedRecording.java b/Mage.Sets/src/mage/cards/c/CursedRecording.java index 88940a3b06c..aced16673f4 100644 --- a/Mage.Sets/src/mage/cards/c/CursedRecording.java +++ b/Mage.Sets/src/mage/cards/c/CursedRecording.java @@ -33,7 +33,7 @@ public final class CursedRecording extends CardImpl { // Whenever you cast an instant or sorcery spell, put a time counter on Cursed Recording. Then if there are seven or more time counters on it, remove those counters and it deals 20 damage to you. Ability ability = new SpellCastControllerTriggeredAbility( new AddCountersSourceEffect(CounterType.TIME.createInstance()), - StaticFilters.FILTER_SPELL_AN_INSTANT_OR_SORCERY, true + StaticFilters.FILTER_SPELL_AN_INSTANT_OR_SORCERY, false ); ability.addEffect(new ConditionalOneShotEffect( new RemoveAllCountersSourceEffect(CounterType.TIME),