forked from External/mage
[STA] text fixes
This commit is contained in:
parent
21b3c11781
commit
cb0df438dd
16 changed files with 51 additions and 47 deletions
|
|
@ -54,7 +54,11 @@ public class Effects extends ArrayList<Effect> {
|
|||
String concatPrefix = effect.getConcatPrefix();
|
||||
|
||||
if (effectNum > 1 && !concatPrefix.isEmpty() && !concatPrefix.equals(".")) {
|
||||
nextRule = concatPrefix + " " + nextRule;
|
||||
if (concatPrefix.contains("<br>")) {
|
||||
nextRule = concatPrefix + CardUtil.getTextWithFirstCharUpperCase(nextRule);
|
||||
} else {
|
||||
nextRule = concatPrefix + " " + nextRule;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue