OreDict for the table?
Nitess opened this issue ยท 3 comments
I can probably implement RecipeBuilder.get("all")
, but it will display all the workbenches in JEI; that's just how it works.
Not right now, no.
You could write a function in CrT to do it though, something like this (pseudocode):
var tables = [
"blacksmith",
"tanner",
...
]
function setShaped(output, recipe, tool, damage) {
for table in tables {
RecipeBuilder.get(table)
.setShaped(recipe)
.addTool(tool, damage)
.addOutput(output)
.create();
}
}