Skip to content

Commit

Permalink
Fixed Configuration not saving in the correct location.
Browse files Browse the repository at this point in the history
  • Loading branch information
WildfireRomeo committed Mar 17, 2022
1 parent 5f56514 commit 6f6efe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/wildfire/main/config/Configuration.java
Expand Up @@ -70,7 +70,7 @@ public Configuration(String saveLoc, String cfgName) {
}
}
//.getOrCreateGameRelativePath(FMLPaths.CONFIGDIR.get().resolve(saveLoc), saveLoc);
CFG_FILE = saveDir.resolve(cfgName + ".json").toFile();
CFG_FILE = saveDir.resolve(saveLoc).resolve(cfgName + ".json").toFile();

}

Expand Down

0 comments on commit 6f6efe9

Please sign in to comment.