Removed deprecated config values
This commit is contained in:
parent
3be3fdd2ea
commit
f80c12f796
1 changed files with 0 additions and 22 deletions
|
@ -5,8 +5,6 @@ import org.betterx.bclib.BCLib;
|
|||
import net.fabricmc.api.EnvType;
|
||||
import net.fabricmc.api.Environment;
|
||||
|
||||
import java.util.Collections;
|
||||
|
||||
public class Configs {
|
||||
// Client and Server-Config must be the first entries. They are not part of the Auto-Sync process
|
||||
// But will be needed by other Auto-Sync Config-Files
|
||||
|
@ -28,24 +26,4 @@ public class Configs {
|
|||
GENERATOR_CONFIG.saveChanges();
|
||||
BIOMES_CONFIG.saveChanges();
|
||||
}
|
||||
|
||||
|
||||
static {
|
||||
BIOMES_CONFIG.keeper.registerEntry(
|
||||
new ConfigKey("end_land_biomes", "force_include"),
|
||||
new ConfigKeeper.StringArrayEntry(Collections.EMPTY_LIST)
|
||||
);
|
||||
BIOMES_CONFIG.keeper.registerEntry(
|
||||
new ConfigKey("end_void_biomes", "force_include"),
|
||||
new ConfigKeeper.StringArrayEntry(Collections.EMPTY_LIST)
|
||||
);
|
||||
BIOMES_CONFIG.keeper.registerEntry(
|
||||
new ConfigKey("nether_biomes", "force_include"),
|
||||
new ConfigKeeper.StringArrayEntry(Collections.EMPTY_LIST)
|
||||
);
|
||||
BIOMES_CONFIG.keeper.registerEntry(
|
||||
new ConfigKey("nether_biomes", "force_exclude"),
|
||||
new ConfigKeeper.StringArrayEntry(Collections.EMPTY_LIST)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue