mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-28 05:25:42 +01:00
Made bukkit settings reload on reload().
This commit is contained in:
parent
ebfd973d09
commit
6e746ef79a
@ -85,14 +85,13 @@ public final class CraftServer implements Server {
|
||||
Logger.getLogger("Minecraft").log(Level.INFO, "This server is running " + getName() + " version " + getVersion());
|
||||
|
||||
configuration = new Configuration((File) console.options.valueOf("bukkit-settings"));
|
||||
configuration.load();
|
||||
loadConfigDefaults();
|
||||
configuration.save();
|
||||
loadConfig();
|
||||
loadPlugins();
|
||||
enablePlugins(PluginLoadOrder.STARTUP);
|
||||
}
|
||||
|
||||
private void loadConfigDefaults() {
|
||||
private void loadConfig() {
|
||||
configuration.load();
|
||||
configuration.getString("database.url", "jdbc:sqlite:{DIR}{NAME}.db");
|
||||
configuration.getString("database.username", "bukkit");
|
||||
configuration.getString("database.password", "walrus");
|
||||
@ -107,6 +106,7 @@ public final class CraftServer implements Server {
|
||||
icanhasbukkit.add("version");
|
||||
configuration.setProperty("aliases.icanhasbukkit", icanhasbukkit);
|
||||
}
|
||||
configuration.save();
|
||||
}
|
||||
|
||||
public void loadPlugins() {
|
||||
@ -311,6 +311,7 @@ public final class CraftServer implements Server {
|
||||
}
|
||||
|
||||
public void reload() {
|
||||
loadConfig();
|
||||
PropertyManager config = new PropertyManager(console.options);
|
||||
|
||||
console.propertyManager = config;
|
||||
|
Loading…
Reference in New Issue
Block a user