geforkt von Mirrors/Paper
Implemented startup plugin loading
Dieser Commit ist enthalten in:
Ursprung
ff67eda4c4
Commit
d647e2098e
@ -25,6 +25,7 @@ import org.bukkit.craftbukkit.command.ColouredConsoleSender;
|
||||
import org.bukkit.craftbukkit.scheduler.CraftScheduler;
|
||||
import org.bukkit.craftbukkit.util.ServerShutdownThread;
|
||||
import org.bukkit.event.world.WorldSaveEvent;
|
||||
import org.bukkit.plugin.PluginLoadOrder;
|
||||
// CraftBukkit
|
||||
|
||||
public class MinecraftServer implements Runnable, ICommandListener {
|
||||
@ -263,7 +264,7 @@ public class MinecraftServer implements Runnable, ICommandListener {
|
||||
this.i = null;
|
||||
this.j = 0;
|
||||
|
||||
server.loadPlugins(); // CraftBukkit
|
||||
server.enablePlugins(PluginLoadOrder.POSTWORLD);
|
||||
}
|
||||
|
||||
void saveChunks() { // CraftBukkit - private -> default
|
||||
|
@ -58,6 +58,7 @@ import org.bukkit.craftbukkit.command.ServerCommandListener;
|
||||
import org.bukkit.scheduler.BukkitWorker;
|
||||
import org.bukkit.craftbukkit.scheduler.CraftScheduler;
|
||||
import org.bukkit.event.world.WorldInitEvent;
|
||||
import org.bukkit.plugin.PluginLoadOrder;
|
||||
import org.bukkit.util.config.Configuration;
|
||||
import org.bukkit.util.config.ConfigurationNode;
|
||||
|
||||
@ -87,6 +88,8 @@ public final class CraftServer implements Server {
|
||||
configuration.load();
|
||||
loadConfigDefaults();
|
||||
configuration.save();
|
||||
loadPlugins();
|
||||
enablePlugins(PluginLoadOrder.STARTUP);
|
||||
}
|
||||
|
||||
private void loadConfigDefaults() {
|
||||
@ -110,7 +113,6 @@ public final class CraftServer implements Server {
|
||||
File pluginFolder = (File) console.options.valueOf("plugins");
|
||||
|
||||
if (pluginFolder.exists()) {
|
||||
try {
|
||||
Plugin[] plugins = pluginManager.loadPlugins(pluginFolder);
|
||||
for (Plugin plugin : plugins) {
|
||||
try {
|
||||
@ -119,12 +121,6 @@ public final class CraftServer implements Server {
|
||||
Logger.getLogger(CraftServer.class.getName()).log(Level.SEVERE, ex.getMessage() + " initializing " + plugin.getDescription().getFullName() + " (Is it up to date?)", ex);
|
||||
}
|
||||
}
|
||||
for (Plugin plugin : plugins) {
|
||||
loadPlugin(plugin);
|
||||
}
|
||||
} catch (Throwable ex) {
|
||||
Logger.getLogger(CraftServer.class.getName()).log(Level.SEVERE, ex.getMessage() + " (Is it up to date?)", ex);
|
||||
}
|
||||
} else {
|
||||
pluginFolder.mkdir();
|
||||
}
|
||||
@ -132,6 +128,15 @@ public final class CraftServer implements Server {
|
||||
commandMap.registerServerAliases();
|
||||
}
|
||||
|
||||
public void enablePlugins(PluginLoadOrder type) {
|
||||
Plugin[] plugins = pluginManager.getPlugins();
|
||||
for (Plugin plugin : plugins) {
|
||||
if ((!plugin.isEnabled()) && (plugin.getDescription().getLoad() == type)) {
|
||||
loadPlugin(plugin);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void disablePlugins() {
|
||||
pluginManager.disablePlugins();
|
||||
}
|
||||
@ -349,6 +354,8 @@ public final class CraftServer implements Server {
|
||||
));
|
||||
}
|
||||
loadPlugins();
|
||||
enablePlugins(PluginLoadOrder.STARTUP);
|
||||
enablePlugins(PluginLoadOrder.POSTWORLD);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren