Skip to content

Commit

Permalink
Merge pull request magefree#2484 from spjspj/master
Browse files Browse the repository at this point in the history
spjspj - Fix Evangelize (TSP)
  • Loading branch information
spjspj authored Oct 20, 2016
2 parents 37f30f3 + 7017749 commit 4732f83
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Mage.Sets/src/mage/cards/e/Evangelize.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
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}");
Expand All @@ -53,7 +52,9 @@ public Evangelize(UUID ownerId, CardSetInfo setInfo) {
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));
}

Expand Down

0 comments on commit 4732f83

Please sign in to comment.