Custom Crafting Recipe for Modded Item Not Working in Add-On

Started by Inlevity on

Topic category: Troubleshooting, bugs, and solutions

Joined Oct 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Custom Crafting Recipe for Modded Item Not Working in Add-On

I am trying to make crafting table recipes for items as a mod for bedrock (add-on) so that I can craft normally unobtainable items. I'm specifically talking about the Orb of Origins and Resignation Paper from OriginsPE. I've followed the integration guide and reimported my mod along with the Origins mod for different worlds multiple times. Although my (Nether Star + Ender Pearl = Orb of Origins) recipe works just fine, the (Nether Star + Paper = Resignation Paper) does not work, so that when I place the materials into the crafting table, there is no output. Other than the recipe simply not working, I'm receiving no errors anywhere else in the process. I'll paste my JSON below for each recipe. My mod name is in fact "season_three_extras" and both recipes are shapeless.

Resignation Paper Recipe:

{
"format_version": "1.12",
"minecraft:recipe_shapeless": {
"description": {
"identifier": "season_three_extras:crafting_table"
},
"groups": [
"season_three_extras"
],
"tags": [
"crafting_table"
],
"ingredients": [
{
"item": "minecraft:nether_star"
},
{
"item": "minecraft:paper"
}
],
"result": {
"item": "origins:resignation_paper",
"count": 1
}
}
}

 

Orb of Origins Recipe:

{
"format_version": "1.12",
"minecraft:recipe_shapeless": {
"description": {
"identifier": "season_three_extras:crafting_table"
},
"groups": [
"season_three_extras"
],
"tags": [
"crafting_table"
],
"ingredients": [
{
"item": "minecraft:nether_star"
},
{
"item": "minecraft:ender_pearl"
}
],
"result": {
"item": "origins:orb_of_origins",
"count": 1
}
}
}
Joined Oct 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
*Those items are actually…
Wed, 10/18/2023 - 22:29

*Those items are actually obtainable, but they would normally drop with a low chance from killing the wither, and I want to be able to access them consistently.