We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89d3534 commit 0fb53fdCopy full SHA for 0fb53fd
src/main/java/me/rojo8399/placeholderapi/impl/PlaceholderAPIPlugin.java
@@ -290,6 +290,10 @@ public void onGamePreInitializationEvent(GamePreInitializationEvent event)
290
if (config == null) {
291
config = new Config();
292
this.root.setValue(Config.type, config);
293
+ try {
294
+ this.loader.save(root);
295
+ } catch (Exception e) {
296
+ }
297
}
298
File msgFile = new File(configDir.toFile(), "messages.conf");
299
msgloader = HoconConfigurationLoader.builder().setFile(msgFile).build();
0 commit comments