From f2b678a415e52a4ac35813f5d043082dca0b1f19 Mon Sep 17 00:00:00 2001 From: lonepoet <127956658+lonepoet@users.noreply.github.com> Date: Sun, 2 Apr 2023 18:38:20 +0200 Subject: [PATCH] [ONE] fix Vindictive Flamestoker (#10160) The activated ability caused all players (instead of just the controller) to discard their hands (as reported on Discord by Merokz in #bug-reports on 22.03.2023) --- Mage.Sets/src/mage/cards/v/VindictiveFlamestoker.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/v/VindictiveFlamestoker.java b/Mage.Sets/src/mage/cards/v/VindictiveFlamestoker.java index 73e383ed62d..e52e393a821 100644 --- a/Mage.Sets/src/mage/cards/v/VindictiveFlamestoker.java +++ b/Mage.Sets/src/mage/cards/v/VindictiveFlamestoker.java @@ -14,7 +14,7 @@ import mage.abilities.costs.mana.ManaCostsImpl; import mage.abilities.effects.common.DrawCardSourceControllerEffect; import mage.abilities.effects.common.InfoEffect; import mage.abilities.effects.common.counter.AddCountersSourceEffect; -import mage.abilities.effects.common.discard.DiscardHandAllEffect; +import mage.abilities.effects.common.discard.DiscardHandControllerEffect; import mage.constants.SubType; import mage.cards.CardImpl; import mage.cards.CardSetInfo; @@ -44,7 +44,7 @@ public final class VindictiveFlamestoker extends CardImpl { )); // {6}{R}, Sacrifice Vindictive Flamestoker: Discard your hand, then draw four cards. This ability costs {1} less to activate for each oil counter on Vindictive Flamestoker. - Ability ability = new SimpleActivatedAbility(new DiscardHandAllEffect(), new ManaCostsImpl<>("{6}{R}")); + Ability ability = new SimpleActivatedAbility(new DiscardHandControllerEffect(), new ManaCostsImpl<>("{6}{R}")); ability.addCost(new SacrificeSourceCost()); ability.addEffect(new DrawCardSourceControllerEffect(4).concatBy(", then")); ability.addEffect(new InfoEffect("This ability costs {1} less to activate for each oil counter on {this}"));