From 2cd196d652345959ace257f64b1b62d77dff243a Mon Sep 17 00:00:00 2001 From: Hidde van Bavel Date: Thu, 7 Apr 2022 07:00:09 +0200 Subject: [PATCH] Fix PressIntoService #8776 (#8820) --- .../src/mage/cards/p/PressIntoService.java | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/Mage.Sets/src/mage/cards/p/PressIntoService.java b/Mage.Sets/src/mage/cards/p/PressIntoService.java index 4ed731d89ba..68783fe3aab 100644 --- a/Mage.Sets/src/mage/cards/p/PressIntoService.java +++ b/Mage.Sets/src/mage/cards/p/PressIntoService.java @@ -28,18 +28,20 @@ public final class PressIntoService extends CardImpl { getSpellAbility().addEffect(new SupportEffect(this, 2, false)); // Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn. - this.getSpellAbility().addTarget(new TargetCreaturePermanent()); - Effect effect = new GainControlTargetEffect(Duration.EndOfTurn); - effect.setTargetPointer(new SecondTargetPointer()); // First target is used by Support - this.getSpellAbility().addEffect(effect); - effect = new UntapTargetEffect(); - effect.setText("Untap that creature"); - effect.setTargetPointer(new SecondTargetPointer()); // First target is used by Support - this.getSpellAbility().addEffect(effect); - effect = new GainAbilityTargetEffect(HasteAbility.getInstance(), Duration.EndOfTurn); - effect.setTargetPointer(new SecondTargetPointer()); // First target is used by Suppor - effect.setText("It gains haste until end of turn"); - this.getSpellAbility().addEffect(effect); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); // First target is used by Support + + this.getSpellAbility().addEffect(new GainControlTargetEffect(Duration.EndOfTurn) + .setText("Gain control of target creature until end of turn") + .setTargetPointer(new SecondTargetPointer()) + ); + this.getSpellAbility().addEffect(new UntapTargetEffect() + .setText("Untap that creature") + .setTargetPointer(new SecondTargetPointer()) + ); + this.getSpellAbility().addEffect(new GainAbilityTargetEffect(HasteAbility.getInstance(), Duration.EndOfTurn) + .setText("It gains haste until end of turn") + .setTargetPointer(new SecondTargetPointer()) + ); } private PressIntoService(final PressIntoService card) {