[Fix] End Cave Biomes did Spawn on the Surface as regular Biomes

This commit is contained in:
Frank 2022-06-08 19:32:20 +02:00
parent 0c7f2a5b4d
commit bd46ba7fb6

View file

@ -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);
} }
} }