From a19610cb57a96a6c3afebf2168cc06109e9eded6 Mon Sep 17 00:00:00 2001 From: L_J Date: Sat, 3 Feb 2018 21:15:25 +0000 Subject: [PATCH] Text fix --- Mage.Sets/src/mage/cards/c/Carrionette.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/c/Carrionette.java b/Mage.Sets/src/mage/cards/c/Carrionette.java index 9e1815b2687..cfef1b9a75c 100644 --- a/Mage.Sets/src/mage/cards/c/Carrionette.java +++ b/Mage.Sets/src/mage/cards/c/Carrionette.java @@ -57,7 +57,7 @@ public class Carrionette extends CardImpl { // {2}{B}{B}: Exile Carrionette and target creature unless that creature's controller pays {2}. Activate this ability only if Carrionette is in your graveyard. DoUnlessTargetPlayerOrTargetsControllerPaysEffect effect = new DoUnlessTargetPlayerOrTargetsControllerPaysEffect(new ExileTargetEffect(), new ManaCostsImpl("{2}")); effect.addEffect(new ExileSourceEffect()); - effect.setText("Exile {this} and target creature unless that creature's controller pays {2}. Activate this ability only if Carrionette is in your graveyard"); + effect.setText("Exile {this} and target creature unless that creature's controller pays {2}. Activate this ability only if {this} is in your graveyard"); Ability ability = new SimpleActivatedAbility(Zone.GRAVEYARD, effect, new ManaCostsImpl("{2}{B}{B}")); ability.addTarget(new TargetCreaturePermanent()); this.addAbility(ability);