Jump to content

[1.12.2] Have custom recipe used instead Oredict version?


Shiroroku

Recommended Posts

I have a mod that adds it's own tree, planks, sticks, and crafting table. I would like to have my wood and items in the Ore Dictionary so they can be used in other mods. But the problem with this is instead of my planks making my sticks, or my crafting table, they instead make vanilla sticks and the vanilla crafting table. Is there some way I can fix this?

 

Registered Ore Dictionary:

Spoiler

OreDictionary.registerOre("plankWood", TABlocks.silentwoodplanks);
OreDictionary.registerOre("stickWood", TAItems.silentwoodstick);
OreDictionary.registerOre("workbench", TABlocks.silentwoodworkbench);

 

 

Recipe for my crafting table:

Spoiler

{
  "type": "minecraft:crafting_shaped",
  "pattern": [
    "##",
    "##"
  ],
  "key": {
    "#": {
      "item": "theaurorian:silentwoodplanks"
    }
  },
  "result": {
    "item": "theaurorian:silentwoodcraftingtable"
  }
}

 

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



×
×
  • Create New...

Important Information

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