[Fix] Crash when BYG is installed

This commit is contained in:
Frank 2022-07-12 17:30:02 +02:00
parent 1f712d9493
commit 353614cdaf

View file

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