From ac8841447cf93fc4ba848171b70ef2065055679a Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Sun, 12 Jul 2020 17:11:25 +0200 Subject: [PATCH] https://github.com/IntellectualSites/PlotSquared/commit/6cf2c0ad97ddde136cb44329293fa5ffac2a5669#r40542418 --- .../src/main/java/com/plotsquared/bukkit/BukkitMain.java | 4 ++-- .../java/com/plotsquared/core/configuration/Settings.java | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java index a35466d1d..c03cdd694 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java @@ -296,10 +296,10 @@ public final class BukkitMain extends JavaPlugin implements Listener, IPlotMain< } final EssentialsUUIDService essentialsUUIDService; - if (Settings.UUID.SERVICE_ESSX && Bukkit.getPluginManager().getPlugin("Essentials") != null) { + if (Settings.UUID.SERVICE_ESSENTIALSX && Bukkit.getPluginManager().getPlugin("Essentials") != null) { essentialsUUIDService = new EssentialsUUIDService(); PlotSquared - .log(Captions.PREFIX + "(UUID) Using Essentials as a complementary UUID service"); + .log(Captions.PREFIX + "(UUID) Using EssentialsX as a complementary UUID service"); } else { essentialsUUIDService = null; } diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java index 352728b43..e2fdfde60 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java @@ -260,14 +260,14 @@ public class Settings extends Config { @Comment("Whether or not automatic background caching should be enabled. It is HIGHLY recommended to keep this turned on." + " This should only be disabled if the server has a very large number of plots (>100k)") public static boolean BACKGROUND_CACHING_ENABLED = true; - @Comment("Whether the paper service is enabled") + @Comment("Whether the PaperMC service is enabled") public static boolean SERVICE_PAPER = true; - @Comment("Whether the LP service is enabled") + @Comment("Whether the LuckPerms service is enabled") public static boolean SERVICE_LUCKPERMS = true; @Comment("Whether the Bukkit service is enabled") public static boolean SERVICE_BUKKIT = true; - @Comment("Whether the EssX service is enabled") - public static boolean SERVICE_ESSX = true; + @Comment("Whether the EssentialsX service is enabled") + public static boolean SERVICE_ESSENTIALSX = true; @Comment("Whether the BungeePerms service is enabled") public static boolean SERVICE_BUNGEE_PERMS = true; }