Posted June 4, 20205 yr The matcher returns true, but then the getCraftingOutput does not run. Can you please help me? Here is my modhttps://github.com/TallYate/Bedrock-Things-mod--unfinished- Edited June 5, 20205 yr by TallYate
June 4, 20205 yr Author 8 hours ago, diesieben07 said: Yes, nobody will ask for that recipe type. Vanilla only checks it's own recipe types. I put a recipe that implements this in here: https://github.com/TallYate/Bedrock-Things-mod--unfinished-/blob/master/src/main/resources/data/bedrockthings/recipes/charged_diamond_pickaxe.json The matches part works (I can tell because I made it log stuff), the getRecipeOutput works (I can get a preview of the recipe), and the getIngredients works (the correct ingredients are in the recipe preview). But whenever matches returns true, getCraftingResult doesn't run at all. It doesn't log anything, and the crafting recipe doesn't work.
June 4, 20205 yr You have to use ICraftingRecipe. The crafting table container loads a crafting recipe with this line: Optional<ICraftingRecipe> optional = p_217066_1_.getServer().getRecipeManager().getRecipe(IRecipeType.CRAFTING, p_217066_3_, p_217066_1_); I recently wanted to add a custom crafting type to a crafting table too, and it crashed because of a class cast exception, until I implemented ICraftingRecipe.
June 4, 20205 yr If you're still overriding getType, then you didn't really "fix" anything. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
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.