Merge remote-tracking branch 'origin/1.19' into 1.19

This commit is contained in:
Frank 2022-07-13 17:24:03 +02:00
commit 42fed7b3a0
3 changed files with 7 additions and 3 deletions

View file

@ -398,7 +398,11 @@ public class InternalBiomeAPI {
}
public static void registerBCLBiomeData(BCLBiome biome) {
BCLBiomeRegistry.register(registryAccess, biome);
try {
BCLBiomeRegistry.register(registryAccess, biome);
} catch (IllegalStateException e) {
BCLib.LOGGER.warning("Unable to register Dummy Biome Entry for " + biome.getID());
}
}
/**