Hey,
is it possible to add multiple empty lines to the scoreboard as in Bukkit?
I am holding all my scores in an ArrayList before building.
I tried to add the following method for adding blank lines
public void blankLine() {
Text text = Text.of(" ");
for(int i = 0; i < blankLines; i++) {
// text.join(Text.builder(" ").color(TextColors.RESET).build());
text.join(Text.of("§r "));
}
add(text);
blankLines++;
}
What would be the way to make this with Sponge?
Thanks in advance