Posted March 15, 20223 yr Alright, so I'm having an issue with a crafting station I'm adding, and (there is another issue as well - trying to fix that too) every time I load up a world, it says "Unknown recipe category: coreascent:catalyzer/coreascent:catalyzer/diamond_catalyzer" in the log. I must be missing some sort of registering for the recipe type, but I can't for the life of me figure out what it is. Here is the github page: https://github.com/blahblahbal/CoreAscensionForge1.18 (Not sure which file is missing something, but the recipe stuff is in coreascent\api\crafting)
March 16, 20223 yr Author The recipe is a JSON file, in the format of a shapeless recipe (which I think should work based on the code I did... maybe I have something wrong there too), and the log literally just says what I put above (along with normal stuff - the only thing that's out of the ordinary is the "unknown recipe category" part). The recipe also doesn't work somehow (like, when I put these items into the modded station, the result doesn't show up in the output slot), but here is the JSON: { "type": "coreascent:catalyzer", "ingredients": [ { "item": "minecraft:coal_block", "item": "coreascent:sulphur", "item": "minecraft:lava_bucket" } ], "result": { "item": "minecraft:diamond", "count": 1 } }
March 16, 20223 yr Author What is that supposed to mean? I'm not sure how that helps point me in the right direction to be completely honest. I'm really not sure what I need to do to fix it. I learn by seeing something, and then being explained how that something works.
March 18, 20223 yr Author On 3/17/2022 at 12:57 AM, diesieben07 said: Here is your recipe implementation: https://github.com/blahblahbal/CoreAscensionForge1.18/blob/main/src/main/java/net/blahblahbal/coreascent/api/crafting/recipe/CatalyzerRecipe.java. Now you need to I think you misunderstood - I'm not trying to get it to show up in the recipe book, I'm trying to get the recipe to work at all. Currently when I put the items from the JSON recipe file into the modded station, nothing shows up in the result slot.
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.