Spike feature fixes & custom pillars

This commit is contained in:
paulevsGitch 2021-03-19 10:34:46 +03:00
parent 674d80a3de
commit a0829e07ae
17 changed files with 107 additions and 38 deletions

View file

@ -25,6 +25,7 @@ public class GeneratorOptions {
private static BlockPos spawn;
private static BlockPos portal = BlockPos.ORIGIN;
private static boolean replacePortal;
private static boolean replacePillars;
public static void init() {
biomeSizeLand = Configs.GENERATOR_CONFIG.getInt("biomeMap", "biomeSizeLand", 256);
@ -50,6 +51,7 @@ public class GeneratorOptions {
Configs.GENERATOR_CONFIG.getInt("spawn.point", "z", 0)
);
replacePortal = Configs.GENERATOR_CONFIG.getBooleanRoot("customEndPortal", true);
replacePillars = Configs.GENERATOR_CONFIG.getBooleanRoot("customObsidianSpikes", true);
}
public static int getBiomeSizeLand() {
@ -123,4 +125,8 @@ public class GeneratorOptions {
public static boolean replacePortal() {
return replacePortal;
}
public static boolean replacePillars() {
return replacePillars;
}
}