Jump to content

[1.9] [Solved] How to add custom planks to crafting?


Erfurt

Recommended Posts

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 :P

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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 :)

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.