I tried following the advice in this thread, and it does work for the wooden pickaxe example they give, but I can't disable a lot of the armor recipes this way. As an example, here is my json for the iron chestplate (it's in data/mymodid):
{
"type": "minecraft:crafting_shaped",
"pattern": [
"X X",
"XXX",
"XXX"
],
"key": {
"X": {
"tag": "forge:ingots/iron"
}
},
"result": {
"item": "minecraft:air"
}
}
Some of the armor pieces work just fine, but this one doesn't work.
I've also tried
{
"type": "minecraft:crafting_shaped",
"pattern": [
"X X",
"XXX",
"XXX"
],
"key": {
"X": {
"item": "minecraft:iron_ingot"
}
},
"result": {
"item": "minecraft:air"
}
}
I've also tried both of them at once. I also tried
/datapack disable "mod:forge"
that also had no effect.
Does anyone know how to fix this?