-
-
Notifications
You must be signed in to change notification settings - Fork 115
Open
Description
The recipe generators for 1.20.6 (labelled as 1.20 on the website) use item as a key for the result item stack instead of id. See ErrorCraft/Itematic#38 for a (modded) example. Note that this was tested using the minecraft:crafting_shaped recipe type, but affects other types like minecraft:crafting_shapeless that use the same result map as well.
Steps to reproduce
- Create a recipe with the generator for version 1.20.6 or paste the following one in the output:
{
"type": "minecraft:crafting_shaped",
"pattern": [
"SSS"
],
"key": {
"S": {
"item": "minecraft:stick"
}
},
"result": {
"item": "minecraft:cobblestone"
}
}- Observe how the recipe is considered valid on the generator with
itemas the key in theresultmap - Place the recipe in a data pack in a world and load the world on 1.20.6
- Observe how the game fails to load the recipe
- Replace the
itemkey withidin theresultmap and reload the data pack - Observe how the game loads the recipe this time
Metadata
Metadata
Assignees
Labels
No labels