Posted July 3, 20178 yr Hey guys, So I'm not completely sure how I'm supposed to add recipes for 1.12. For my mod I need to be able to add recipes for items I've created that use other items I've created or vanilla items. I found this topic which offers a little help but not much. Thanks,
July 3, 20178 yr You need JSON files for recipes now. Look at how vanilla does it. Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
July 3, 20178 yr Author Can a recipe be a part of multiple groups? It appears not, but thought I'd ask just in case I'm wrong. Does anyone know where this error is coming from: Unknown recipe type: expanded:crafting_shaped Here's the JSON file it's having a problem with: { "type": "crafting_shaped", "group": "cactus", "pattern": [ " #", " ##", "###" ], "key": { "#": { "item": "expanded:cut_cactus_block_block" } }, "result": { "item": "expanded:cut_cactus_stairs_block", "count": 3 } } Edited July 3, 20178 yr by DragonFerocity
July 4, 20178 yr Try changing the "type" to "minecraft:crafting_shaped" I had this issue until I figured it out Example: { "type": "minecraft:crafting_shaped", "group": "minecraft:slime", "pattern": [ "###", "###", "###" ], "key": { "#": { "item": "blobman:blue_slimeball" } }, "result": { "item": "blobman:blue_slime" } }
July 4, 20178 yr Author Thanks, I just figured that out too. Now I'm getting a strange error on another piece of code but I'll make a new topic since it doesn't relate to this.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.