Disable the paper uuid service for offline mode servers and add toggles for all third party uuid services

This commit is contained in:
Alexander Söderberg
2020-07-12 17:04:30 +02:00
parent a2ec404014
commit 6cf2c0ad97
2 changed files with 21 additions and 7 deletions

View File

@ -260,6 +260,16 @@ 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")
public static boolean SERVICE_PAPER = true;
@Comment("Whether the LP 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 BungeePerms service is enabled")
public static boolean SERVICE_BUNGEE_PERMS = true;
}