Fix wrong order on ability rendering

* Keyword abilities were being rendered *last* on cards instead of first as they should be.
This commit is contained in:
Mark Langen 2016-09-15 16:00:36 -06:00
parent 47e38e32bb
commit 5a6a62ecbf

View file

@ -760,7 +760,7 @@ public class ModernCardRenderer extends CardRenderer {
if (!textboxKeywords.isEmpty()) { if (!textboxKeywords.isEmpty()) {
String keywordRulesString = getKeywordRulesString(); String keywordRulesString = getKeywordRulesString();
TextboxRule keywordsRule = new TextboxRule(keywordRulesString, new ArrayList<TextboxRule.AttributeRegion>()); TextboxRule keywordsRule = new TextboxRule(keywordRulesString, new ArrayList<TextboxRule.AttributeRegion>());
allRules.add(keywordsRule); allRules.add(0, keywordsRule);
} }
// Basic mana draw mana symbol in textbox (for basic lands) // Basic mana draw mana symbol in textbox (for basic lands)