Update TriumphOfFerocity.java

static ruleText passed to ConditionalTriggeredAbility was leaving off the initial triggering condition when building rule text.
This commit is contained in:
Michael Simons 2018-05-28 01:16:48 -04:00 committed by GitHub
parent ea0a677e46
commit 2d92d9be41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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}");