[ROE] updated level up text

This commit is contained in:
Evan Kranzler 2022-03-09 18:30:54 -05:00
parent 1a53011e55
commit 08411b122c
3 changed files with 21 additions and 13 deletions

View file

@ -1676,9 +1676,11 @@ public class VerifyCardDataTest {
String[] cardRules = card
.getRules()
.stream()
.reduce("", (a, b) -> a + '\n' + b)
.collect(Collectors.joining("\n"))
.replace("<br>", "\n")
.replace("<br/>", "\n")
.replace("<b>", "")
.replace("</b>", "")
.split("[\\$\\\n]");
for (int i = 0; i < cardRules.length; i++) {
cardRules[i] = prepareRule(card.getName(), cardRules[i]);