[DMU] Fix Ghitu Amplifier kicker effect not working. Closes #9582 (#9596)

This commit is contained in:
Hidde vb 2022-09-30 01:25:30 +02:00 committed by GitHub
parent 349c24554d
commit 632f10adf2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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());