Recipe Bug - 2020.3

Started by Paolemius on

Topic category: Troubleshooting, bugs, and solutions

Last seen on 20:05, 24. Jun 2020
Joined Jun 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Recipe Bug - 2020.3

I found this issue creating a datapack.

When you create a recipe for smelting / blasting / smoking, you get this code:

{

  "group": "stuff",
  "type": "minecraft:smelting",
  "experience": 1,
  "cookingtime": 200,
  "ingredient": {
    "item": "minecraft:slime_block"
  },
  "result": {
    "item": "minecraft:red_mushroom_block"
  }

}

it seems to me that the "RESULT" block is not working. You need to edit into:

{

  "group": "stuff",
  "type": "minecraft:smelting",
  "experience": 1,
  "cookingtime": 200,
  "ingredient": {
    "item": "minecraft:slime_block"
  },
  "result": "minecraft:red_mushroom_block"
}

 

Last seen on 00:28, 24. Jul 2020
Joined May 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Did you lock the code after…
Tue, 06/23/2020 - 22:48

Did you lock the code after changing the result?

Other thing that can help is editing it manually like this:

{

  "group": "stuff",
  "type": "minecraft:smelting",
  "experience": 1,
  "cookingtime": 200,
  "ingredient": {
    "item": "minecraft:slime_block"
  },
  "result": {
    "item": "minecraft:ITEM_NAME"
  }

}