Option to hide shaped and shapeless recipes like regular crafting recipes
Guinaro opened this issue ยท 4 comments
I would like the option to be able to hide recipes from JEI, just like I can do with regular crafting recipes.
.sethidden(true (default))
Reason:
I'm recreating the banner recipes functionality in a Tailor Workshop Table. But I only need demonstration recipes visible. Thus I want to show a banner pattern or banner symbol result only for white banners with black dye. All other recipes need to be hidden. For my shapeless recipes I can currently suffice with a single entry with ore:dye and get the meta in my Recipe function.
However I need to add all recipes for all dyes, to be able to do shaped patterns, as I cannot do a ore:dye, as I usually have many dyes necessary for a single pattern, and they need to be identical.
e.g. : Top Stripe Pattern in Strings.
"ts": [["dye", "dye", "dye", "dye", "dye"],
["null", "null", "null", "null", "null"],
["null", "null", "banner", "null", "null"],
["null", "null", "null", "null", "null"],
["null", "null", "null", "null", "null"]
], //Top Stripe
Currently for each dye color the recipe appears, and I want to limit it to JEI only showing white banner with black dye.
Guinaro