question: how do I make biomes from other world generation mods load? [1.19+]
douglasb78 opened this issue ยท 0 comments
I have these biomes in my Minecraft:
Biomes
terrestria:hemlock_rainforest
terrestria:cypress_forest
terrestria:dense_woodlands
terrestria:snowy_hemlock_forest
terrestria:redwood_forest
I downloaded the "template" datapack and added the biomes to the worldgen\world_preset\modern_beta.json
file by adding these lines inside generator -> biome_source -> provider_settings -> climate mappings
:
Climate mappings
"hemlock_rainforest": {
"biome": "terrestria:hemlock_rainforest",
"deepOceanBiome": "modern_beta:beta_ocean",
"oceanBiome": "modern_beta:beta_ocean"
},
"dense_woodlands": {
"biome": "terrestria:dense_woodlands",
"deepOceanBiome": "modern_beta:beta_ocean",
"oceanBiome": "modern_beta:beta_ocean"
},
"cypress_forest": {
"biome": "terrestria:cypress_forest",
"deepOceanBiome": "modern_beta:beta_ocean",
"oceanBiome": "modern_beta:beta_ocean"
},
"snowy_hemlock_forest": {
"biome": "terrestria:snowy_hemlock_forest",
"deepOceanBiome": "modern_beta:beta_ocean",
"oceanBiome": "modern_beta:beta_ocean"
},
"redwood_forest": {
"biome": "terrestria:redwood_forest",
"deepOceanBiome": "modern_beta:beta_ocean",
"oceanBiome": "modern_beta:beta_ocean"
},
And even tried adding the biomes to the tags\worldgen\biome
files, like is_forest.json
, is_rainforest.json
.. to see if they get generated when I create a world. But it didn't work.
Is it possible to add biomes from mods such as Biomes O' Plenty, Terrestria, .. to the Modern Beta world generator?