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.
This commit is contained in:
Christian Koop 2023-04-06 10:06:58 +02:00
parent e33848adc5
commit 824f674dcd
No known key found for this signature in database
GPG Key ID: 89A8181384E010A3
1 changed files with 1 additions and 1 deletions

View File

@ -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();