mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
This commit is contained in:
parent
6cf2c0ad97
commit
ac8841447c
@ -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;
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user