Craft storage units using barrels added by blockus
crabdancing opened this issue ยท 3 comments
It's annoying to craft crude storage units when you have blockus installed, because blockus adds a bunch of new barrel types (oak, birch, jungle, etc).
I would like it if crude storage units were craftable using any type of barrel from blockus.
I added this to my datapack:
File data/techreborn/recipes/crafting_table/unit/storage/crude_storage_unit_blockus.json
{
"type": "minecraft:crafting_shaped",
"pattern": [
"WWW",
"WBW",
"WPW"
],
"key": {
"B": {
"tag": "blockus:barrels"
},
"P": {
"item": "minecraft:paper"
},
"W": {
"tag": "minecraft:planks"
}
},
"result": {
"item": "techreborn:crude_storage_unit"
}
}
relates to #2091