MinusKube / Netherboard

Scoreboard API for your Minecraft Sponge and Bukkit Plugins, supporting all versions from 1.7 to 1.19.
Apache License 2.0
77 stars 21 forks source link

Add setLines() / updateLines() method to Netherboards #18

Closed ArnaudLier closed 4 years ago

ArnaudLier commented 4 years ago

Hello! It would be great if you add a setLines() or updateLines() method to the Netherboard object. Example of use :


// Set the title
board.updateTitle(ChatColor.GOLD + "FastBoard");

// Change the lines
board.updateLines(
        "", // Empty line
        "One line",
        "", // Empty line
        "Second line"
);

(https://github.com/MrMicky-FR/FastBoard)

MinusKube commented 4 years ago

Done :) (In both versions 1.2.0 and wip 2.0.0)