From e041107df9806b4d80eea9b90315b22906ae0931 Mon Sep 17 00:00:00 2001 From: Florian CUNY Date: Thu, 21 Feb 2019 10:39:06 +0100 Subject: [PATCH] Moved 'general.metrics' to 'web.metrics' in config --- src/main/java/world/bentobox/bentobox/Settings.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/main/java/world/bentobox/bentobox/Settings.java b/src/main/java/world/bentobox/bentobox/Settings.java index be30f924d..bfce65e64 100644 --- a/src/main/java/world/bentobox/bentobox/Settings.java +++ b/src/main/java/world/bentobox/bentobox/Settings.java @@ -26,12 +26,6 @@ public class Settings implements DataObject { // --------------------------------------------- /* GENERAL */ - @ConfigComment("BentoBox uses bStats.org to get global data about the plugin to help improving it.") - @ConfigComment("bStats has nearly no effect on your server's performance and the sent data is completely") - @ConfigComment("anonymous so please consider twice if you really want to disable it.") - @ConfigEntry(path = "general.metrics") - private boolean metrics = true; - @ConfigComment("Default language for new players.") @ConfigComment("This is the filename in the locale folder without .yml.") @ConfigComment("If this does not exist, the default en-US will be used.") @@ -168,6 +162,13 @@ public class Settings implements DataObject { @ConfigEntry(path = "island.automated-ownership-transfer.ignore-ranks", hidden = true) private boolean autoOwnershipTransferIgnoreRanks = false; + /* WEB */ + @ConfigComment("BentoBox uses bStats.org to get global data about the plugin to help improving it.") + @ConfigComment("bStats has nearly no effect on your server's performance and the sent data is completely") + @ConfigComment("anonymous so please consider twice if you really want to disable it.") + @ConfigEntry(path = "web.metrics") + private boolean metrics = true; + //---------------------------------------------------------------------------------------/ @ConfigComment("These settings should not be edited") private String uniqueId = "config";