[BUG] Use Sync config loading, so config doesn't parse before it's loaded

This commit is contained in:
2024-08-30 16:18:21 +02:00
parent 0b2a59af1a
commit 82cbf78330
32 changed files with 32 additions and 32 deletions

View File

@@ -10,7 +10,7 @@ import java.io.File;
* Base Config class containing the save, upgrading and loading logic.
* All config classes must extend this class
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2.1.0")
public class ModuleConfig extends AbstractConfig {
/**

View File

@@ -26,7 +26,7 @@ public class JsonConfigFormat<S> extends AbstractConfigFormat<S> {
public S readConfig(S conf) {
/* Set up the Serializer and Config Object */
ObjectConverter converter = new ObjectConverter();
FileConfig config = FileConfig.builder(getConfigPath()).build();
FileConfig config = FileConfig.builder(getConfigPath()).sync().build();
config.load();
/* Load the config and return the loaded config */

View File

@@ -26,7 +26,7 @@ public class TomlConfigFormat<S> extends AbstractConfigFormat<S> {
public S readConfig(S conf) {
/* Set up the Serializer and Config Object */
ObjectConverter converter = new ObjectConverter();
CommentedFileConfig config = CommentedFileConfig.builder(getConfigPath()).build();
CommentedFileConfig config = CommentedFileConfig.builder(getConfigPath()).sync().build();
config.load();
/* Load the config and return the loaded config */