Reformated
This commit is contained in:
parent
079b51e3f6
commit
852e5a6abc
385 changed files with 6924 additions and 5656 deletions
|
@ -1,10 +1,10 @@
|
|||
package org.betterx.bclib.config;
|
||||
|
||||
import org.betterx.bclib.BCLib;
|
||||
|
||||
import net.fabricmc.api.EnvType;
|
||||
import net.fabricmc.api.Environment;
|
||||
|
||||
import org.betterx.bclib.BCLib;
|
||||
|
||||
import java.util.Collections;
|
||||
|
||||
public class Configs {
|
||||
|
@ -30,13 +30,21 @@ public class Configs {
|
|||
}
|
||||
|
||||
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));
|
||||
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