From 632f10adf2cb5cc8aaaab2958c4093b0e5ea2aba Mon Sep 17 00:00:00 2001 From: Hidde vb Date: Fri, 30 Sep 2022 01:25:30 +0200 Subject: [PATCH] [DMU] Fix Ghitu Amplifier kicker effect not working. Closes #9582 (#9596) --- Mage.Sets/src/mage/cards/g/GhituAmplifier.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/g/GhituAmplifier.java b/Mage.Sets/src/mage/cards/g/GhituAmplifier.java index f045712303c..088909b7491 100644 --- a/Mage.Sets/src/mage/cards/g/GhituAmplifier.java +++ b/Mage.Sets/src/mage/cards/g/GhituAmplifier.java @@ -38,7 +38,7 @@ public final class GhituAmplifier extends CardImpl { // When Ghitu Amplifier enters the battlefield, if it was kicked, return target creature an opponent controls to its owner's hand. Ability ability = new ConditionalInterveningIfTriggeredAbility( new EntersBattlefieldTriggeredAbility(new ReturnToHandTargetEffect()), - KickedCondition.TWICE, "When {this} enters the battlefield, " + + KickedCondition.ONCE, "When {this} enters the battlefield, " + "if it was kicked, return target creature an opponent controls to its owner's hand." ); ability.addTarget(new TargetOpponentsCreaturePermanent());