mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-01-03 06:57:39 +01:00
Fix folia init tasks never getting called LOLW
This commit is contained in:
parent
9133dce3eb
commit
4256909eee
@ -467,6 +467,7 @@ public class Essentials extends JavaPlugin implements net.ess3.api.IEssentials {
|
||||
}
|
||||
|
||||
execTimer.mark("Init(Providers)");
|
||||
registerListeners(getServer().getPluginManager());
|
||||
reload();
|
||||
|
||||
// The item spawn blacklist is loaded with all other settings, before the item
|
||||
@ -526,8 +527,6 @@ public class Essentials extends JavaPlugin implements net.ess3.api.IEssentials {
|
||||
}
|
||||
|
||||
private void registerListeners(final PluginManager pm) {
|
||||
HandlerList.unregisterAll(this);
|
||||
|
||||
if (getSettings().isDebug()) {
|
||||
LOGGER.log(Level.INFO, "Registering Listeners");
|
||||
}
|
||||
@ -629,9 +628,6 @@ public class Essentials extends JavaPlugin implements net.ess3.api.IEssentials {
|
||||
command.setUsage(tl(commandName + "CommandUsage"));
|
||||
}
|
||||
}
|
||||
|
||||
final PluginManager pm = getServer().getPluginManager();
|
||||
registerListeners(pm);
|
||||
}
|
||||
|
||||
private IEssentialsCommand loadCommand(final String path, final String name, final IEssentialsModule module, final ClassLoader classLoader) throws Exception {
|
||||
|
@ -728,6 +728,7 @@ public class Commandessentials extends EssentialsCommand {
|
||||
|
||||
sender.sendMessage(tl(serverMessageKey, "Server", server.getBukkitVersion() + " " + server.getVersion()));
|
||||
sender.sendMessage(tl(serverMessageKey, "Brand", server.getName()));
|
||||
sender.sendMessage(tl("versionOutputFlags", "FOLIA:" + VersionUtil.FOLIA + ",FLAT:" + VersionUtil.PRE_FLATTENING + ",SUPSTAT:" + VersionUtil.getServerSupportStatus().name()));
|
||||
sender.sendMessage(tl("versionOutputFine", "EssentialsX", essVer));
|
||||
|
||||
for (final Plugin plugin : pm.getPlugins()) {
|
||||
|
@ -1483,6 +1483,7 @@ versionErrorPlayer=\u00a76Error while checking EssentialsX version information!
|
||||
versionFetching=\u00a76Fetching version information...
|
||||
versionOutputVaultMissing=\u00a74Vault is not installed. Chat and permissions may not work.
|
||||
versionOutputFine=\u00a76{0} version: \u00a7a{1}
|
||||
versionOutputFlags=\u00a76Feature Flags: \u00a7a{0}
|
||||
versionOutputWarn=\u00a76{0} version: \u00a7c{1}
|
||||
versionOutputUnsupported=\u00a7d{0} \u00a76version: \u00a7d{1}
|
||||
versionOutputUnsupportedPlugins=\u00a76You are running \u00a7dunsupported plugins\u00a76!
|
||||
|
Loading…
Reference in New Issue
Block a user