[Feature Request]: Utilise Tags in recipes
xanthian opened this issue ยท 0 comments
Many of your items explicitly require "minecraft:chest" for example
It would be beneficial for mod compatibility to amend this to be "c:wooden_chests" or "c:chests"
There are many mods that add chests but none of them can be used to create your mods items.
Solution(s)
Example recipe would be :
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": {
"item": "minecraft:acacia_planks"
},
"/":
{
"item": "minecraft:chest"
},
{
"tag": "c:wooden_chests"
}
},
"pattern": [
"###",
"#/#",
"###"
],
"result": {
"count": 3,
"item": "handcrafted:acacia_cupboard"
},
"show_notification": true
}