From 741a10cb95aaab1e4a21be788e0fde60ec96d9cb Mon Sep 17 00:00:00 2001 From: Phoenix616 Date: Tue, 8 Sep 2020 12:20:19 +0100 Subject: [PATCH] Update server economy account warning to include shop creation and uuid --- src/main/java/com/Acrobot/ChestShop/UUIDs/NameManager.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/Acrobot/ChestShop/UUIDs/NameManager.java b/src/main/java/com/Acrobot/ChestShop/UUIDs/NameManager.java index e705b1c..e03c38a 100644 --- a/src/main/java/com/Acrobot/ChestShop/UUIDs/NameManager.java +++ b/src/main/java/com/Acrobot/ChestShop/UUIDs/NameManager.java @@ -433,7 +433,12 @@ public class NameManager implements Listener { if (serverEconomyAccount == null || serverEconomyAccount.getUuid() == null) { serverEconomyAccount = null; if (!Properties.SERVER_ECONOMY_ACCOUNT.isEmpty()) { - ChestShop.getBukkitLogger().log(Level.WARNING, "Server economy account setting '" + Properties.SERVER_ECONOMY_ACCOUNT + "' doesn't seem to be the name of a known player! Please log in at least once in order for the server economy account to work."); + ChestShop.getBukkitLogger().log(Level.WARNING, "Server economy account setting '" + + Properties.SERVER_ECONOMY_ACCOUNT + + "' doesn't seem to be the name of a known player account!" + + " Please specify the SERVER_ECONOMY_ACCOUNT_UUID" + + " or log in at least once and create a player shop with that account" + + " in order for the server economy account to work."); } } } catch (SQLException e) {