From e8b458fc30c6902657ef8fc18d354003e47d89bc Mon Sep 17 00:00:00 2001 From: Sean Walsh <40175938+stwalsh4118@users.noreply.github.com> Date: Sun, 19 Feb 2023 20:05:25 -0600 Subject: [PATCH] Fix Ethereal Champion rules text. Closes #10010 (#10011) --- Mage.Sets/src/mage/cards/e/EtherealChampion.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/e/EtherealChampion.java b/Mage.Sets/src/mage/cards/e/EtherealChampion.java index 29c40e9294..752a801f8d 100644 --- a/Mage.Sets/src/mage/cards/e/EtherealChampion.java +++ b/Mage.Sets/src/mage/cards/e/EtherealChampion.java @@ -29,7 +29,7 @@ public final class EtherealChampion extends CardImpl { // Pay 1 life: Prevent the next 1 damage that would be dealt to Ethereal Champion this turn. Effect effect = new PreventDamageToSourceEffect(Duration.EndOfTurn, 1); - effect.setText("Pay 1 life: Prevent the next 1 damage that would be dealt to {this} this turn"); + effect.setText("Prevent the next 1 damage that would be dealt to {this} this turn"); this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new PayLifeCost(1))); }