Merge remote-tracking branch 'origin/1.19' into 1.19
This commit is contained in:
commit
42fed7b3a0
3 changed files with 7 additions and 3 deletions
|
@ -8,7 +8,7 @@ minecraft_version=1.19
|
||||||
loader_version=0.14.8
|
loader_version=0.14.8
|
||||||
fabric_version=0.57.0+1.19
|
fabric_version=0.57.0+1.19
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version=2.0.15
|
mod_version=2.0.16
|
||||||
maven_group=org.betterx.bclib
|
maven_group=org.betterx.bclib
|
||||||
archives_base_name=bclib
|
archives_base_name=bclib
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
|
|
@ -398,7 +398,11 @@ public class InternalBiomeAPI {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void registerBCLBiomeData(BCLBiome biome) {
|
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());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"schemaVersion": 1,
|
"schemaVersion": 1,
|
||||||
"id": "bclib",
|
"id": "bclib",
|
||||||
"version": "2.0.15",
|
"version": "2.0.16",
|
||||||
"name": "BCLib",
|
"name": "BCLib",
|
||||||
"description": "A library for BetterX team mods",
|
"description": "A library for BetterX team mods",
|
||||||
"authors": [
|
"authors": [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue