Skip to content

Commit

Permalink
Fix invalid recipe format
Browse files Browse the repository at this point in the history
  • Loading branch information
budak7273 committed Jul 27, 2024
1 parent 35d2d4e commit 2fce60e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
16 changes: 9 additions & 7 deletions data/magnet/recipe/magnet_blue_red.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
{
"group": "magnet",
"type": "minecraft:crafting_shaped",
"result": {
"count": 1,
"item": "minecraft:chainmail_leggings"
},
"group": "magnet",
"category": "equipment",
"key": {
"I": {
"item": "minecraft:iron_ingot"
Expand All @@ -16,9 +13,14 @@
"item": "minecraft:red_dye"
}
},
"pattern": [
"pattern": [
"III",
"I I",
"B R"
]
],
"result": {
"id": "minecraft:chainmail_leggings",
"count": 1,
"components": {}
}
}
18 changes: 10 additions & 8 deletions data/magnet/recipe/magnet_red_blue.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
{
"group": "magnet",
"type": "minecraft:crafting_shaped",
"result": {
"count": 1,
"item": "minecraft:chainmail_leggings"
},
"key": {
"type": "minecraft:crafting_shaped",
"group": "magnet",
"category": "equipment",
"key": {
"I": {
"item": "minecraft:iron_ingot"
},
Expand All @@ -20,5 +17,10 @@
"III",
"I I",
"R B"
]
],
"result": {
"id": "minecraft:chainmail_leggings",
"count": 1,
"components": {}
}
}

0 comments on commit 2fce60e

Please sign in to comment.