ive been stuck on this for literal hou
rs and cant figure it out, my problem right now is that my code for a crafting recipe isnt working, none of them are except for the 1 shapeless recipe i got to work
Non Working example:
{
"type": "minecraft:crafting_shaped",
"pattern": [
"xxx",
"x x",
"xxx"
],
"key": {
"x": {
"item": "sdd:straw"
}
},
"result": {
"item": "sdd:jerry_nest",
"count": "1"
}
}
Working:
{
"type": "crafting_shapeless",
"ingredients": [
{
"item": "minecraft:wheat"
}
],
"result": {
"item": "sdd:straw",
"count": 9
}
}