mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -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()) {
|
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)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue