diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 5431589..5f9d5cb 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,7 +4,7 @@ - @@ -480,7 +479,8 @@ - diff --git a/src/main/java/land/chipmunk/chayapak/chomens_bot/commands/NetMessageCommand.java b/src/main/java/land/chipmunk/chayapak/chomens_bot/commands/NetMessageCommand.java index 3c6c362..f829859 100644 --- a/src/main/java/land/chipmunk/chayapak/chomens_bot/commands/NetMessageCommand.java +++ b/src/main/java/land/chipmunk/chayapak/chomens_bot/commands/NetMessageCommand.java @@ -44,7 +44,7 @@ public class NetMessageCommand implements Command { final String hostAndPort = bot.host() + ":" + bot.port(); final Component component = Component.translatable( - "[%s] %s › %s", + "[%s]%s%s%s› %s", Component .text(hostAndPort) .color(NamedTextColor.GRAY) @@ -57,7 +57,9 @@ public class NetMessageCommand implements Command { .append(Component.text("Click here to copy the server host and port to your clipboard").color(NamedTextColor.GREEN)) ) ), + Component.text(" "), Component.text(context.sender().profile().getName()).color(NamedTextColor.GRAY), + Component.text(" "), Component.text(String.join(" ", args)).color(NamedTextColor.GRAY) ).color(NamedTextColor.DARK_GRAY);