From 70177492653cf1d9fc0b05ed2827e3e685c7fbfb Mon Sep 17 00:00:00 2001 From: spjspj Date: Thu, 20 Oct 2016 18:50:36 +1100 Subject: [PATCH] spjspj - Fix Evangelize (TSP) --- Mage.Sets/src/mage/cards/e/Evangelize.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/e/Evangelize.java b/Mage.Sets/src/mage/cards/e/Evangelize.java index 4631c3a97c..0ef72fa1de 100644 --- a/Mage.Sets/src/mage/cards/e/Evangelize.java +++ b/Mage.Sets/src/mage/cards/e/Evangelize.java @@ -44,7 +44,6 @@ import mage.target.common.TargetOpponentsChoicePermanent; public class Evangelize extends CardImpl { private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent(); - private static final String staticText = "Gain control of target creature of an opponent's choice that he or she controls"; public Evangelize(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{4}{W}"); @@ -53,7 +52,9 @@ public class Evangelize extends CardImpl { this.addAbility(new BuybackAbility("{2}{W}{W}")); // Gain control of target creature of an opponent's choice that he or she controls. - this.getSpellAbility().addEffect(new GainControlTargetEffect(Duration.EndOfGame)); + GainControlTargetEffect effect = new GainControlTargetEffect(Duration.EndOfGame); + effect.setText("Gain control of target creature of an opponent's choice that he or she controls"); + this.getSpellAbility().addEffect(effect); this.getSpellAbility().addTarget(new TargetOpponentsChoicePermanent(1, 1, filter, false)); }