From 75e5ee84626c2adf7117d1cc2dcc4e33f521e70a Mon Sep 17 00:00:00 2001 From: xenohedron Date: Mon, 5 Jun 2023 21:10:52 -0400 Subject: [PATCH] Fix Diamond Mare text --- Mage.Sets/src/mage/cards/d/DiamondMare.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/d/DiamondMare.java b/Mage.Sets/src/mage/cards/d/DiamondMare.java index 66fcddee13..886435d413 100644 --- a/Mage.Sets/src/mage/cards/d/DiamondMare.java +++ b/Mage.Sets/src/mage/cards/d/DiamondMare.java @@ -4,7 +4,7 @@ import java.util.UUID; import mage.MageInt; import mage.ObjectColor; import mage.abilities.TriggeredAbilityImpl; -import mage.abilities.common.EntersBattlefieldAbility; +import mage.abilities.common.AsEntersBattlefieldAbility; import mage.abilities.effects.common.ChooseColorEffect; import mage.abilities.effects.common.GainLifeEffect; import mage.constants.SubType; @@ -31,7 +31,7 @@ public final class DiamondMare extends CardImpl { this.toughness = new MageInt(3); // As Diamond Mare enters the battlefield, choose a color. - this.addAbility(new EntersBattlefieldAbility(new ChooseColorEffect(Outcome.Neutral))); + this.addAbility(new AsEntersBattlefieldAbility(new ChooseColorEffect(Outcome.Neutral))); // Whenever you cast a spell of the chosen color, you gain 1 life. this.addAbility(new DiamondMareTriggeredAbility());