From 0e31956dbba6da8916815712dc9525b8b46d542d Mon Sep 17 00:00:00 2001 From: Qekly Date: Sat, 6 Apr 2024 20:12:23 -0300 Subject: [PATCH] chore(messages): More customization for default messages --- .../qeklydev/clientviewer/config/Messages.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/api/src/main/java/me/qeklydev/clientviewer/config/Messages.java b/api/src/main/java/me/qeklydev/clientviewer/config/Messages.java index 9178eac..c9f8189 100644 --- a/api/src/main/java/me/qeklydev/clientviewer/config/Messages.java +++ b/api/src/main/java/me/qeklydev/clientviewer/config/Messages.java @@ -12,12 +12,12 @@ public final class Messages implements UsableConfiguration { public String unknownCommand = " That sub-command doesn't exist!"; public List help = List.of( - "ClientViewer > Available Commands List:", - " - /clientviewer help Shows this messages.", - " - /clientviewer reload Reloads the plugin configuration.", - " - /client [player] Shows your client information, or for another player."); + "[⭐] ClientViewer [⭐] Available Commands List ->", + "/clientviewer help Shows this messages.", + "/clientviewer reload Reloads the plugin configuration.", + "/client [player] Shows your client information, or for another player."); - public String reloadSuccess = " The plugin configurations have been reloaded successful."; + public String reloadSuccess = " The plugin configurations have been reloaded successful."; public String reloadFailed = " Something went wrong during reloading process, check the console."; @@ -26,20 +26,20 @@ public final class Messages implements UsableConfiguration { public String offlinePlayer = " The specified player is not connected now."; public List ownClientInformation = List.of( - "Showing your client information", + "[] Showing your client information", "Brand name: ", "Protocol Version Number: "); public List thirdPartyClientInformation = List.of( - "Showing client information of ", + "[] Showing client information of ", "Brand name: ", "Protocol Version Number: "); public List clientBrandUnknown = List.of( - "The brand name provided by your client is null/unknown.", + "[[❌]] The brand name provided by your client is null/unknown. [[❌]]", "Please try again, or use another client to join!"); public List clientBrandDisallowed = List.of( - "The client you're using has been blocked by the administrators.", + "[[❌]] The client you're using has been blocked by the administrators. [[❌]]", "Use another client to play on the server!"); }