[Fix] End Cave Biomes did Spawn on the Surface as regular Biomes
This commit is contained in:
parent
0c7f2a5b4d
commit
bd46ba7fb6
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ public class BCLibEndBiomeSource extends BCLBiomeSource {
|
||||||
if (bclBiome.getParentBiome() == null) {
|
if (bclBiome.getParentBiome() == null) {
|
||||||
if (BiomeAPI.wasRegisteredAsEndVoidBiome(key) || includeVoid.contains(key.toString())) {
|
if (BiomeAPI.wasRegisteredAsEndVoidBiome(key) || includeVoid.contains(key.toString())) {
|
||||||
endVoidBiomePicker.addBiome(bclBiome);
|
endVoidBiomePicker.addBiome(bclBiome);
|
||||||
} else {
|
} else if (BiomeAPI.wasRegisteredAsEndLandBiome(key)){
|
||||||
endLandBiomePicker.addBiome(bclBiome);
|
endLandBiomePicker.addBiome(bclBiome);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue