From b2aa4ecc08e70c452dbe238f3670c80111a22e11 Mon Sep 17 00:00:00 2001 From: xenohedron Date: Sun, 18 Feb 2024 00:33:58 -0500 Subject: [PATCH] text fix --- Mage.Sets/src/mage/cards/d/DivineIntervention.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/d/DivineIntervention.java b/Mage.Sets/src/mage/cards/d/DivineIntervention.java index a87423657e2..964928a4f2e 100644 --- a/Mage.Sets/src/mage/cards/d/DivineIntervention.java +++ b/Mage.Sets/src/mage/cards/d/DivineIntervention.java @@ -32,7 +32,7 @@ public final class DivineIntervention extends CardImpl { // Divine Intervention enters the battlefield with 2 intervention counters on it. Effect effect = new AddCountersSourceEffect(CounterType.INTERVENTION.createInstance(2)); - this.addAbility(new EntersBattlefieldAbility(effect, "with 2 intervention counters on it")); + this.addAbility(new EntersBattlefieldAbility(effect, "with two intervention counters on it")); // At the beginning of your upkeep, remove an intervention counter from Divine Intervention. this.addAbility(new BeginningOfUpkeepTriggeredAbility(new RemoveCounterSourceEffect(CounterType.INTERVENTION.createInstance()), TargetController.YOU, false));