From d26830b9aae30ebcf84498bb9e04763300a3689c Mon Sep 17 00:00:00 2001 From: theelk801 Date: Tue, 20 Jan 2026 12:07:21 -0500 Subject: [PATCH] small text fix --- Mage.Sets/src/mage/cards/s/SoulImmolation.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/s/SoulImmolation.java b/Mage.Sets/src/mage/cards/s/SoulImmolation.java index 4e3f6f6c623..539669ef4fb 100644 --- a/Mage.Sets/src/mage/cards/s/SoulImmolation.java +++ b/Mage.Sets/src/mage/cards/s/SoulImmolation.java @@ -34,7 +34,7 @@ public final class SoulImmolation extends CardImpl { this.getSpellAbility().addEffect(new DamagePlayersEffect(GetXValue.instance, TargetController.OPPONENT)); this.getSpellAbility().addEffect(new DamageAllEffect( GetXValue.instance, StaticFilters.FILTER_OPPONENTS_PERMANENT_CREATURES - ).setText("{this} deals X damage to each opponent and each creature they control")); + ).setText("and each creature they control")); } private SoulImmolation(final SoulImmolation card) { @@ -51,7 +51,7 @@ class SoulImmolationCost extends VariableCostImpl { SoulImmolationCost() { super(VariableCostType.ADDITIONAL, "amount to blight"); - this.setText("blight X. X can't be greater than the greatest toughness among creatures you control."); + this.setText("blight X. X can't be greater than the greatest toughness among creatures you control"); } private SoulImmolationCost(final SoulImmolationCost cost) {