fix #2197, cleaned up armor stand recipes

This commit is contained in:
Pyritie 2025-11-11 21:42:21 +00:00
parent 1908d3bf34
commit 0ba7c6cf7b
7 changed files with 39 additions and 1 deletions

View file

@ -90,6 +90,21 @@ const registerCreateItemTags = (event) => {
event.remove('create:stone_types/deepslate', 'minecraft:deepslate')
event.remove('create:stone_types/dripstone', 'minecraft:dripstone_block')
event.remove('create:stone_types/blackstone', 'minecraft:blackstone')
event.add('forge:smooth_stone_slab', 'create:polished_cut_granite_slab')
event.add('forge:smooth_stone_slab', 'create:polished_cut_diorite_slab')
event.add('forge:smooth_stone_slab', 'create:polished_cut_andesite_slab')
event.add('forge:smooth_stone_slab', 'create:polished_cut_calcite_slab')
event.add('forge:smooth_stone_slab', 'create:polished_cut_dripstone_slab')
event.add('forge:smooth_stone_slab', 'create:polished_cut_deepslate_slab')
event.add('forge:smooth_stone_slab', 'create:polished_cut_tuff_slab')
event.add('forge:smooth_stone_slab', 'create:polished_cut_limestone_slab')
event.add('forge:smooth_stone_slab', 'create:polished_cut_asurine_slab')
event.add('forge:smooth_stone_slab', 'create:polished_cut_crimsite_slab')
event.add('forge:smooth_stone_slab', 'create:polished_cut_ochrum_slab')
event.add('forge:smooth_stone_slab', 'create:polished_cut_scoria_slab')
event.add('forge:smooth_stone_slab', 'create:polished_cut_scorchia_slab')
event.add('forge:smooth_stone_slab', 'create:polished_cut_veridium_slab')
}
const registerCreateBlockTags = (event) => {