fix(worldgen): keep vanilla presets in world_preset/normal tag

The custom_ore_gen:ultra_wide_biome tag entry was the ONLY value, which
broke 'minecraft:normal' (the server default) - any server/world that
resolves the default world preset would fail to find normal and fall
back to a broken/vanilla worldgen. Now the tag is additive: it keeps
all six vanilla presets AND adds ultra_wide_biome.
This commit is contained in:
feldenr
2026-06-21 21:54:05 +02:00
parent a3168f7c74
commit e667083853
@@ -1,6 +1,11 @@
{
"replace": false,
"values": [
"minecraft:normal",
"minecraft:flat",
"minecraft:large_biomes",
"minecraft:amplified",
"minecraft:single_biome_surface",
"custom_ore_gen:ultra_wide_biome"
]
}