Client sky option

This commit is contained in:
paulevsGitch 2020-12-31 07:24:50 +03:00
parent fc71ea4eba
commit 2549ab810f
4 changed files with 26 additions and 3 deletions

View file

@ -6,6 +6,7 @@ public class Configs {
public static final PathConfig ITEM_CONFIG = new PathConfig("items");
public static final IdConfig BIOME_CONFIG = new EntryConfig("biomes");
public static final PathConfig GENERATOR_CONFIG = new PathConfig("generator");
public static final PathConfig CLENT_CONFIG = new PathConfig("client");
public static void saveConfigs() {
ENTITY_CONFIG.saveChanges();
@ -13,5 +14,6 @@ public class Configs {
BIOME_CONFIG.saveChanges();
ITEM_CONFIG.saveChanges();
GENERATOR_CONFIG.saveChanges();
CLENT_CONFIG.saveChanges();
}
}