From 75de07843b9ff727ede3c60ee4334a134eda568c Mon Sep 17 00:00:00 2001 From: pop4959 Date: Sat, 26 Dec 2020 14:53:00 -0800 Subject: [PATCH] Clearer wording on the file download message (#125) --- .../main/java/de/bluecolored/bluemap/common/plugin/Plugin.java | 2 +- .../src/main/java/de/bluecolored/bluemap/cli/BlueMapCLI.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/Plugin.java b/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/Plugin.java index 5ec9f5f4..223e321f 100644 --- a/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/Plugin.java +++ b/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/Plugin.java @@ -141,7 +141,7 @@ public void load() throws IOException, ParseResourceException { blueMap.getResourcePack(); } catch (MissingResourcesException ex) { Logger.global.logWarning("BlueMap is missing important resources!"); - Logger.global.logWarning("You need to accept the download of the required files in order of BlueMap to work!"); + Logger.global.logWarning("You must accept the required file download in order for BlueMap to work!"); try { Logger.global.logWarning("Please check: " + blueMap.getCoreConfigFile().getCanonicalPath()); } catch (IOException ignored) {} Logger.global.logInfo("If you have changed the config you can simply reload the plugin using: /bluemap reload"); diff --git a/implementations/cli/src/main/java/de/bluecolored/bluemap/cli/BlueMapCLI.java b/implementations/cli/src/main/java/de/bluecolored/bluemap/cli/BlueMapCLI.java index f220cfbe..de7be721 100644 --- a/implementations/cli/src/main/java/de/bluecolored/bluemap/cli/BlueMapCLI.java +++ b/implementations/cli/src/main/java/de/bluecolored/bluemap/cli/BlueMapCLI.java @@ -336,7 +336,7 @@ public static void main(String[] args) { } catch (MissingResourcesException e) { Logger.global.logWarning("BlueMap is missing important resources!"); - Logger.global.logWarning("You need to accept the download of the required files in order of BlueMap to work!"); + Logger.global.logWarning("You must accept the required file download in order for BlueMap to work!"); try { Logger.global.logWarning("Please check: " + blueMap.getCoreConfigFile().getCanonicalPath()); } catch (NullPointerException | IOException ignored) {} System.exit(2); return;