From 88b0e1f3591cee07b966d525ea1a10f2e88dcfb1 Mon Sep 17 00:00:00 2001 From: Robert Barrett Date: Sun, 24 Jul 2022 18:59:02 -0400 Subject: [PATCH] [STX] Fix Flamescroll Celebrant. Closes #9305 (#9315) --- Mage.Sets/src/mage/cards/f/FlamescrollCelebrant.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/f/FlamescrollCelebrant.java b/Mage.Sets/src/mage/cards/f/FlamescrollCelebrant.java index 824d3e87627..178977860aa 100644 --- a/Mage.Sets/src/mage/cards/f/FlamescrollCelebrant.java +++ b/Mage.Sets/src/mage/cards/f/FlamescrollCelebrant.java @@ -74,7 +74,7 @@ public final class FlamescrollCelebrant extends ModalDoubleFacesCard { class FlamescrollCelebrantTriggeredAbility extends TriggeredAbilityImpl { FlamescrollCelebrantTriggeredAbility() { - super(Zone.BATTLEFIELD, new DamageTargetEffect(StaticValue.get(2), true, "that player", true)); + super(Zone.BATTLEFIELD, new DamageTargetEffect(StaticValue.get(1), true, "that player", true)); } private FlamescrollCelebrantTriggeredAbility(final FlamescrollCelebrantTriggeredAbility ability) { @@ -114,7 +114,7 @@ class FlamescrollCelebrantTriggeredAbility extends TriggeredAbilityImpl { class RevelInSilenceEffect extends ContinuousRuleModifyingEffectImpl { RevelInSilenceEffect() { - super(Duration.WhileOnBattlefield, Outcome.Benefit); + super(Duration.EndOfTurn, Outcome.Benefit); staticText = "Your opponents can't cast spells or activate planeswalkers' loyalty abilities this turn."; }