From bf1da82567cdd3c202c0251afe71df7cd781253b Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 15 Jan 2020 17:30:43 +0100 Subject: [PATCH] * Colfenor'S Urn - Fixed rule text. --- Mage.Sets/src/mage/cards/c/ColfenorsUrn.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/c/ColfenorsUrn.java b/Mage.Sets/src/mage/cards/c/ColfenorsUrn.java index 978b434c06..0c036c1792 100644 --- a/Mage.Sets/src/mage/cards/c/ColfenorsUrn.java +++ b/Mage.Sets/src/mage/cards/c/ColfenorsUrn.java @@ -40,7 +40,8 @@ public final class ColfenorsUrn extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}"); // Whenever a creature with toughness 4 or greater is put into your graveyard from the battlefield, you may exile it. - this.addAbility(new PutIntoGraveFromBattlefieldAllTriggeredAbility(new ExileTargetForSourceEffect(), true, filter, true, true)); + this.addAbility(new PutIntoGraveFromBattlefieldAllTriggeredAbility( + new ExileTargetForSourceEffect().setText("exile it"), true, filter, true, true)); // At the beginning of the end step, if three or more cards have been exiled with Colfenor's Urn, sacrifice it. If you do, return those cards to the battlefield under their owner's control. this.addAbility(new BeginningOfEndStepTriggeredAbility(Zone.BATTLEFIELD, new ColfenorsUrnEffect(), TargetController.ANY, new ColfenorsUrnCondition(), false));