Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-19 04:50:06 +01:00
Delayed alias registration until postworld
Dieser Commit ist enthalten in:
Ursprung
22c28e593e
Commit
b94bb27663
@ -126,17 +126,20 @@ public final class CraftServer implements Server {
|
|||||||
} else {
|
} else {
|
||||||
pluginFolder.mkdir();
|
pluginFolder.mkdir();
|
||||||
}
|
}
|
||||||
|
|
||||||
commandMap.registerServerAliases();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void enablePlugins(PluginLoadOrder type) {
|
public void enablePlugins(PluginLoadOrder type) {
|
||||||
Plugin[] plugins = pluginManager.getPlugins();
|
Plugin[] plugins = pluginManager.getPlugins();
|
||||||
|
|
||||||
for (Plugin plugin : plugins) {
|
for (Plugin plugin : plugins) {
|
||||||
if ((!plugin.isEnabled()) && (plugin.getDescription().getLoad() == type)) {
|
if ((!plugin.isEnabled()) && (plugin.getDescription().getLoad() == type)) {
|
||||||
loadPlugin(plugin);
|
loadPlugin(plugin);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (type == PluginLoadOrder.POSTWORLD) {
|
||||||
|
commandMap.registerServerAliases();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void disablePlugins() {
|
public void disablePlugins() {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren