mirror of
https://github.com/PaperMC/Paper.git
synced 2025-05-19 05:30:23 -07:00
Add missing spaces back (#12508)
This commit is contained in:
parent
b9b3cd652e
commit
ec421715ed
@ -81,7 +81,7 @@ public class HelpCommand extends BukkitCommand {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (topic == null || !topic.canSee(sender)) {
|
if (topic == null || !topic.canSee(sender)) {
|
||||||
sender.sendMessage(Component.text("No help for" + command, NamedTextColor.RED));
|
sender.sendMessage(Component.text("No help for " + command, NamedTextColor.RED));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -91,9 +91,9 @@ public class HelpCommand extends BukkitCommand {
|
|||||||
.append(Component.text("--------- ", NamedTextColor.YELLOW))
|
.append(Component.text("--------- ", NamedTextColor.YELLOW))
|
||||||
.append(Component.text("Help: ", NamedTextColor.WHITE))
|
.append(Component.text("Help: ", NamedTextColor.WHITE))
|
||||||
.append(Component.text(topic.getName()))
|
.append(Component.text(topic.getName()))
|
||||||
.append(Component.empty());
|
.append(Component.space());
|
||||||
if (page.getTotalPages() > 1) {
|
if (page.getTotalPages() > 1) {
|
||||||
header.append(Component.text(" ("))
|
header.append(Component.text("("))
|
||||||
.append(Component.text(page.getPageNumber()))
|
.append(Component.text(page.getPageNumber()))
|
||||||
.append(Component.text("/"))
|
.append(Component.text("/"))
|
||||||
.append(Component.text(page.getTotalPages()))
|
.append(Component.text(page.getTotalPages()))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user