mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
merge fix
This commit is contained in:
parent
ea179b698e
commit
e9a68744af
1 changed files with 2 additions and 2 deletions
|
|
@ -135,10 +135,10 @@ public class BracketLegalityLabel extends LegalityLabel {
|
||||||
groups.put(GROUP_TUTORS, this.foundTutors);
|
groups.put(GROUP_TUTORS, this.foundTutors);
|
||||||
groups.forEach((group, cards) -> {
|
groups.forEach((group, cards) -> {
|
||||||
showInfo.add("<br>");
|
showInfo.add("<br>");
|
||||||
showInfo.add("<u><span style='font-weight:bold;'>" + group + ": " + this.foundGameChangers.size() + "</span></u>");
|
showInfo.add("<u><span style='font-weight:bold;'>" + group + ": " + cards.size() + "</span></u>");
|
||||||
if (!cards.isEmpty()) {
|
if (!cards.isEmpty()) {
|
||||||
showInfo.add("<ul style=\"font-size: " + infoFontSize + "px; width: " + TOOLTIP_TABLE_WIDTH + "px; padding-left: 10px; margin: 0;\">");
|
showInfo.add("<ul style=\"font-size: " + infoFontSize + "px; width: " + TOOLTIP_TABLE_WIDTH + "px; padding-left: 10px; margin: 0;\">");
|
||||||
this.foundGameChangers.forEach(s -> showInfo.add(String.format("<li style=\"margin-bottom: 2px;\">%s</li>", s)));
|
cards.forEach(s -> showInfo.add(String.format("<li style=\"margin-bottom: 2px;\">%s</li>", s)));
|
||||||
showInfo.add("</ul>");
|
showInfo.add("</ul>");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue