From 824f674dcdae29266d3871ac0f1f920ae2a994a9 Mon Sep 17 00:00:00 2001 From: Christian Koop Date: Thu, 6 Apr 2023 10:06:58 +0200 Subject: [PATCH] Change order of IP and UUID in 'license not found' message to match GUI The marketplace first asks for the UUID - I changed the order in the message to match that order. --- Core/src/main/java/com/songoda/core/SongodaPlugin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/songoda/core/SongodaPlugin.java b/Core/src/main/java/com/songoda/core/SongodaPlugin.java index bd542f34..ff1062b7 100644 --- a/Core/src/main/java/com/songoda/core/SongodaPlugin.java +++ b/Core/src/main/java/com/songoda/core/SongodaPlugin.java @@ -107,8 +107,8 @@ public abstract class SongodaPlugin extends JavaPlugin { ChatColor.YELLOW + "License setup steps:\n" + ChatColor.YELLOW + "Visit the link mentioned above and click the 'Create License' button.\n" + ChatColor.YELLOW + "Copy the following IP address and UUID and click create.\n" + - ChatColor.YELLOW + "IP: " + externalIP + "\n" + ChatColor.YELLOW + "UUID: " + serverUuid + "\n" + + ChatColor.YELLOW + "IP: " + externalIP + "\n" + ChatColor.RED + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"; this.console.sendMessage(message); }).start();