Posted June 24, 20169 yr Hey guys, So I just wanted to know if there's a easy way to add my custom planks to crafting recipes like, beds, chests, and stuff like that, so that they will work if I'm using my custom planks with vanilla planks. I know I can do something like this. GameRegistry.addRecipe(new ItemStack(Blocks.crafting_table, 1), "ww", "ww", 'w', new ItemStack(myBlocks.planks, 1, OreDictionary.WILDCARD_VALUE)); But that will only allow me to use my own custom planks in the crafting recipe, if I use any vanilla planks, the recipe won't work. I know this is a newbi question, but you know
June 24, 20169 yr You do not do this by adding your own recipes, you need to register the plank to the OreDictionary in the init.
June 24, 20169 yr Author You do not do this by adding your own recipes, you need to register the plank to the OreDictionary in the init. I see, and how would I go about doing that, if I may ask?
June 24, 20169 yr You do not do this by adding your own recipes, you need to register the plank to the OreDictionary in the init. I see, and how would I go about doing that, if I may ask? Call OreDictionary.registerOre in init. Forge registers vanilla planks as "plankWood" and uses this as a replacement ingredient for planks when it replaces vanilla recipes with ore recipes; so register your planks as "plankWood" as well. Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
June 24, 20169 yr Author You do not do this by adding your own recipes, you need to register the plank to the OreDictionary in the init. I see, and how would I go about doing that, if I may ask? Call OreDictionary.registerOre in init. Forge registers vanilla planks as "plankWood" and uses this as a replacement ingredient for planks when it replaces vanilla recipes with ore recipes; so register your planks as "plankWood" as well. Awesome thanks alot, that did the trick
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.