More dragon respawn fixes
This commit is contained in:
parent
28cd23f378
commit
20176730f9
7 changed files with 90 additions and 15 deletions
|
@ -28,6 +28,7 @@ public class GeneratorOptions {
|
|||
private static boolean replacePillars;
|
||||
private static long islandDistBlock;
|
||||
private static int islandDistChunk;
|
||||
private static boolean directSpikeHeight;
|
||||
|
||||
public static void init() {
|
||||
biomeSizeLand = Configs.GENERATOR_CONFIG.getInt("biomeMap", "biomeSizeLand", 256);
|
||||
|
@ -142,4 +143,14 @@ public class GeneratorOptions {
|
|||
public static int getIslandDistChunk() {
|
||||
return islandDistChunk;
|
||||
}
|
||||
|
||||
public static void setDirectSpikeHeight() {
|
||||
directSpikeHeight = true;
|
||||
}
|
||||
|
||||
public static boolean isDirectSpikeHeight() {
|
||||
boolean height = directSpikeHeight;
|
||||
directSpikeHeight = false;
|
||||
return height;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue