This commit is contained in:
N0tMyFaultOG 2020-07-12 17:11:25 +02:00
parent 6cf2c0ad97
commit ac8841447c
2 changed files with 6 additions and 6 deletions

View File

@ -296,10 +296,10 @@ public final class BukkitMain extends JavaPlugin implements Listener, IPlotMain<
} }
final EssentialsUUIDService essentialsUUIDService; 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(); essentialsUUIDService = new EssentialsUUIDService();
PlotSquared PlotSquared
.log(Captions.PREFIX + "(UUID) Using Essentials as a complementary UUID service"); .log(Captions.PREFIX + "(UUID) Using EssentialsX as a complementary UUID service");
} else { } else {
essentialsUUIDService = null; essentialsUUIDService = null;
} }

View File

@ -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." @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)") + " This should only be disabled if the server has a very large number of plots (>100k)")
public static boolean BACKGROUND_CACHING_ENABLED = true; 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; 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; public static boolean SERVICE_LUCKPERMS = true;
@Comment("Whether the Bukkit service is enabled") @Comment("Whether the Bukkit service is enabled")
public static boolean SERVICE_BUKKIT = true; public static boolean SERVICE_BUKKIT = true;
@Comment("Whether the EssX service is enabled") @Comment("Whether the EssentialsX service is enabled")
public static boolean SERVICE_ESSX = true; public static boolean SERVICE_ESSENTIALSX = true;
@Comment("Whether the BungeePerms service is enabled") @Comment("Whether the BungeePerms service is enabled")
public static boolean SERVICE_BUNGEE_PERMS = true; public static boolean SERVICE_BUNGEE_PERMS = true;
} }