Barrel recipe overrides all Minecraft barrel recipes wood types.
Neonis00 opened this issue ยท 2 comments
This is expected behavior. The Barrel recipe is supposed to use the #minecraft:planks tag and #minecraft:slabs. This is even the behavior of vanilla barrel recipes:
Vanilla:
{
"type": "minecraft:crafting_shaped",
"pattern": [
"PSP",
"P P",
"PSP"
],
"key": {
"P": {
"tag": "minecraft:planks"
},
"S": {
"tag": "minecraft:wooden_slabs"
}
},
"result": {
"item": "minecraft:barrel"
}
}
SpoornPink:
{
"type" : "minecraft:crafting_shaped",
"pattern" : [
"PSP",
"P P",
"PSP"
],
"key" : {
"P" : {
"tag" : "minecraft:planks"
},
"S" : {
"tag" : "minecraft:wooden_slabs"
}
},
"result" : {
"item" : "spoornpink:pink_blossom_barrel"
}
}
You'll probably find this happening with other mods' recipes as any recipe that uses tags can "conflict". I'd recommend using the Polymorph mod which adds a button letting you choose exactly which recipe you want to craft: https://www.curseforge.com/minecraft/mc-mods/polymorph-fabric