renamed default config dir

This commit is contained in:
Frank Bauer 2021-07-19 23:11:26 +02:00
parent 5cc430de6f
commit 5e2961c91d

View file

@ -18,8 +18,8 @@ public class SessionConfig extends PathConfig {
public final File levelFolder;
public SessionConfig(String modID, String group, LevelStorageSource.LevelStorageAccess session, ServerLevel world) {
super(modID, group, new File(getWorldFolder(session, world), BCLib.MOD_ID));
super(modID, group, new File(getWorldFolder(session, world), BCLib.MOD_ID+"-config"));
this.levelFolder = new File(getWorldFolder(session, world), BCLib.MOD_ID);
this.levelFolder = new File(getWorldFolder(session, world), BCLib.MOD_ID+"-config");
}
}