Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 21:10:17 +01:00
Catch errors loading plugins
Dieser Commit ist enthalten in:
Ursprung
cb2ff3c8bb
Commit
b396707cb9
@ -74,10 +74,16 @@ public final class CraftServer implements Server {
|
||||
|
||||
private void loadPlugin(Plugin plugin) {
|
||||
List<Command> pluginCommands = PluginCommandYamlParser.parse(plugin);
|
||||
|
||||
if (!pluginCommands.isEmpty()) {
|
||||
commandMap.registerAll(plugin.getDescription().getName(), pluginCommands);
|
||||
}
|
||||
pluginManager.enablePlugin(plugin);
|
||||
|
||||
try {
|
||||
pluginManager.enablePlugin(plugin);
|
||||
} catch (Throwable ex) {
|
||||
Logger.getLogger(CraftServer.class.getName()).log(Level.SEVERE, ex.getMessage() + " loading " + plugin.getDescription().getFullName() + " (Is it up to date?)", ex);
|
||||
}
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren