mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08:00
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:
parent
47e38e32bb
commit
5a6a62ecbf
1 changed files with 1 additions and 1 deletions
|
|
@ -760,7 +760,7 @@ public class ModernCardRenderer extends CardRenderer {
|
|||
if (!textboxKeywords.isEmpty()) {
|
||||
String keywordRulesString = getKeywordRulesString();
|
||||
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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue