If a biome is tagged with both is_savanna and is_badlands, the ruby ore placed feature will be added twice and the game will crash. If a biome is tagged with both is_taiga and is_mountain, the sapphire ore placed feature will be added twice and the game will also crash.
The solution to this is to add two new biome tags to the mod, probably named spawns_ruby_ore and spawns_sapphire_ore. The spawns_ruby_ore tag would include #minecraft:is_savanna and #minecraft:is_badlands, and the spawns_sapphire_ore tag would include #minecraft:is_taiga and #minecraft:is_mountain
When this mod is used in conjunction with William Wyther's Overhauled Overworld (and possibly other biome mods as well), the game crashes.
Steps To Reproduce
This is caused due to how Ruby Ore and Sapphire Ore biome modifiers are set up.
If a biome is tagged with both
is_savanna
andis_badlands
, the ruby ore placed feature will be added twice and the game will crash. If a biome is tagged with bothis_taiga
andis_mountain
, the sapphire ore placed feature will be added twice and the game will also crash.The solution to this is to add two new biome tags to the mod, probably named
spawns_ruby_ore
andspawns_sapphire_ore
. Thespawns_ruby_ore
tag would include#minecraft:is_savanna
and#minecraft:is_badlands
, and thespawns_sapphire_ore
tag would include#minecraft:is_taiga
and#minecraft:is_mountain