Make sure server does not offer non-existing config files

This commit is contained in:
Frank 2021-08-10 23:14:50 +02:00
parent 0f3df9b229
commit 911ca85b03
3 changed files with 13 additions and 4 deletions

View file

@ -22,6 +22,7 @@ public abstract class Config {
}
protected Config(String modID, String group, boolean autoSync) {
BCLib.LOGGER.info("Registered Config " + modID+"."+group+" ("+autoSync+")");
this.keeper = new ConfigKeeper(modID, group);
this.registerEntries();
this.autoSync = autoSync;