KubeJS (Old)

KubeJS (Old)

3M Downloads

Custom smelting recipes doesn't allow item tags

ArcTrooper210 opened this issue ยท 6 comments

commented

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

commented

do /neoforge tags minecraft:item get c:sapling (or something like that)
if it is empty, well, don't use empty tags

commented

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.

commented

It should be c:saplings iirc

commented

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

commented

No what I mean is the tag is misspelled in your recipe, it should likely be #c:saplings, not #c:sapling

commented

For whatever reason our #c tag did not work but using #minecraft:saplings worked.