CraftTweaker + Alcocraft
conneich opened this issue ยท 0 comments
Not really an Issue but passing on info to others!
After some fiddling in CT I couldn't find a way to add recipes other than using the Recipe Manager: recipetype:minecraft:beer_brewing and writing a JSON object.
<recipetype:minecraft:beer_brewing>.addJsonRecipe("test", { "type": "alcocraft:beer_brewing", "ingredients":[ {"item":"minecraft:stone"}, {"item":"alcocraft:hop"}, {"item":"minecraft:torch"}, {"item":"minecraft:diamond"} ], "output":{"item":"minecraft:beacon"} });
So to note:
- You must use "type":"alcocraft:beer_brewing"
- You must have all 4 ingredients, it does not accept any less and it wouldn't accept "minecraft:air" for an empty slot.
- For now this was the only way I could get it to add recipes for the keg.
Happy brewing! :)