[Fix] End will not generate if BetterEnd is not present

This commit is contained in:
Frank 2023-06-20 18:36:02 +02:00
parent 62d54eb425
commit 7aadf42741

View file

@ -532,7 +532,7 @@ public class BiomeAPI {
* @return {@link BCLBiome} or {@code BiomeAPI.EMPTY_BIOME}. * @return {@link BCLBiome} or {@code BiomeAPI.EMPTY_BIOME}.
*/ */
public static BCLBiome getBiome(ResourceLocation biomeID) { public static BCLBiome getBiome(ResourceLocation biomeID) {
return BCLBiomeRegistry.getBiomeOrEmpty(biomeID, BCLBiomeRegistry.registryOrNull()); return BCLBiomeRegistry.getBiomeOrNull(biomeID, BCLBiomeRegistry.registryOrNull());
} }
/** /**