Consider using c:wood_sticks in recipes for mod compatibility
xanthian opened this issue ยท 5 comments
I have a mod that adds a stick for each wood type, I have seen others but not 100% sure on the functionality of their sticks :)
I didn't create this tag and I've seen some other mods using it.
I changed "item": "minecraft:stick"
to "tag": "c:wood_sticks"
, but this doesn't work without additional mods installed.
{
"type": "minecraft:crafting_shaped",
"key": {
"B": {
"item": "minecraft:iron_ingot"
},
"H": {
"tag": "c:wood_sticks"
}
},
"pattern": [
" BB",
" BB",
"H "
],
"result": {
"item": "paladins:iron_great_hammer"
}
}
What would be the recommended way to implement this?
Ugh, my bad, I was certain it was one shipped with FabricAPI.
Still worth using as lots of mods do.
You can do something like
"H": [
{
"tag": "c:wood_sticks"
},
{
"item": "minecraft:stick"
}