
Custom smelting recipes doesn't allow item tags
ArcTrooper210 opened this issue ยท 6 comments
Minecraft Version
1.21.1
KubeJS Version
2101.7.1-build.181
Rhino Version
2101.2.7-build.74
Architectury Version
13.0.8
Forge/Fabric Version
Neoforge 21.1.125
Describe your issue
When trying to allow all saplings to smelt into dead bushes, the item tag throw's an invalid ingredient error
ServerEvents.recipes(event => {
event.smelting('minecraft:dead_bush', '#c:sapling', 0.35, 100)
})
server_scripts:vanilla/recipes.js#53: Failed to create a 'minecraft:smelting' recipe from args [minecraft:dead_bush, #c:sapling, 0.35, 100.0]: Invalid component 'ingredient' (ingredient) - Component 'ingredient' is not allowed to contain empty values!
Crash report/logs
No response
do /neoforge tags minecraft:item get c:sapling
(or something like that)
if it is empty, well, don't use empty tags
Its definitely not empty, we have get so that all vanilla saplings are included in that tag group. Looks like its just saplings for some reason, even though its a valid tag. I tested with the fences tag and it worked just fine.
It should be c:saplings iirc
When I tried other tag groups I included the #
like with #c:fences
and #c:mushrooms
and it worked fine. I guess ill give it a try and see
No what I mean is the tag is misspelled in your recipe, it should likely be #c:saplings, not #c:sapling