Remove skeletons from stray spawning biomes

This commit is contained in:
Sergeant Acoustic 2026-03-07 20:54:07 +00:00
parent 2e3acfcaac
commit d3ec4ec638
2 changed files with 26 additions and 10 deletions

View file

@ -64,7 +64,9 @@
"worldgen/biome/jagged_peaks.json", "worldgen/biome/jagged_peaks.json",
"worldgen/biome/snowy_slopes.json", "worldgen/biome/snowy_slopes.json",
"worldgen/biome/grove.json", "worldgen/biome/grove.json",
"worldgen/biome/snowy_taiga.json" "worldgen/biome/snowy_taiga.json",
"worldgen/biome/snowy_plains.json",
"worldgen/biome/ice_spikes.json"
] ]
}] }]
} }

View file

@ -1,3 +1,4 @@
[
{ {
"op": "add", "op": "add",
"path": "/spawners/monster/-", "path": "/spawners/monster/-",
@ -5,6 +6,19 @@
"type": "minecraft:stray", "type": "minecraft:stray",
"maxCount": 4, "maxCount": 4,
"minCount": 4, "minCount": 4,
"weight": 80 "weight": 100
} }
},
{
"op": "find",
"path": "/spawners/monster",
"test": [{
"path": "/type",
"value": "minecraft:skeleton"
}],
"then": [{
"op": "remove",
"path": ""
}]
} }
]