From 2d92d9be41c0c11b203fcd32c6e293f0510ea7ba Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Mon, 28 May 2018 01:16:48 -0400 Subject: [PATCH] Update TriumphOfFerocity.java static ruleText passed to ConditionalTriggeredAbility was leaving off the initial triggering condition when building rule text. --- Mage.Sets/src/mage/cards/t/TriumphOfFerocity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/t/TriumphOfFerocity.java b/Mage.Sets/src/mage/cards/t/TriumphOfFerocity.java index 177822ac175..9a7d3cd0bc2 100644 --- a/Mage.Sets/src/mage/cards/t/TriumphOfFerocity.java +++ b/Mage.Sets/src/mage/cards/t/TriumphOfFerocity.java @@ -43,7 +43,7 @@ import mage.constants.TargetController; */ public class TriumphOfFerocity extends CardImpl { - private static final String ruleText = "draw a card if you control the creature with the greatest power or tied for the greatest power"; + private static final String ruleText = "At the beginning of your upkeep, draw a card if you control the creature with the greatest power or tied for the greatest power"; public TriumphOfFerocity(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{2}{G}");