Helping someone host a private survival server with large biomes, and we feel there are too many generated structures. I tried asking chatgpt for help and no luck. It made me make a datapack folder looking like this:
reducedstructure
- pack.mcmeta
- data
-- minecraft
--- worldgen
---- structure_set
----- village.json
pack.mcmeta contains this:
{
"pack": {
"pack_format": 15,
"description": "Reduces vanilla structure spawn rates"
}
}
and village.json contains this:
{
"structures": [
{ "structure": "minecraft:village_plains", "weight": 1 },
{ "structure": "minecraft:village_desert", "weight": 1 },
{ "structure": "minecraft:village_savanna", "weight": 1 },
{ "structure": "minecraft:village_snowy", "weight": 1 },
{ "structure": "minecraft:village_taiga", "weight": 1 }
],
"placement": {
"type": "minecraft:random_spread",
"spacing": 640,
"separation": 120,
"salt": 10387312
}
}
I am not a good coder and it's probably obvious to someone experienced with this, i just want this to work, hopefully understand it enough so i can repeat it with other things without coming back asking more questions