Skip to content

Commit

Permalink
1.21.4 fix recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
MeeniMc committed Jan 20, 2025
1 parent cc00cdf commit 5a7dd2f
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions data/horse_armor_craft/recipe/diamond_horse_armor.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"#": "minecraft:diamond",
"h": "minecraft:leather_horse_armor"
},
"pattern": [
" #",
"#h#",
"# #"
],
"key": {
"#": {"item": "minecraft:diamond"},
"h": {"item": "minecraft:leather_horse_armor"}
},
"result": {
"id": "minecraft:diamond_horse_armor",
"count": 1
Expand Down
8 changes: 4 additions & 4 deletions data/horse_armor_craft/recipe/gold_horse_armor.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"#": "minecraft:gold_ingot",
"h": "minecraft:leather_horse_armor"
},
"pattern": [
" #",
"#h#",
"# #"
],
"key": {
"#": {"item": "minecraft:gold_ingot"},
"h": {"item": "minecraft:leather_horse_armor"}
},
"result": {
"id": "minecraft:golden_horse_armor",
"count": 1
Expand Down
8 changes: 4 additions & 4 deletions data/horse_armor_craft/recipe/iron_horse_armor.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"#": "minecraft:iron_ingot",
"h": "minecraft:leather_horse_armor"
},
"pattern": [
" #",
"#h#",
"# #"
],
"key": {
"#": {"item": "minecraft:iron_ingot"},
"h": {"item": "minecraft:leather_horse_armor"}
},
"result": {
"id": "minecraft:iron_horse_armor",
"count": 1
Expand Down
10 changes: 5 additions & 5 deletions data/horse_armor_craft/recipe/saddle.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"#": "minecraft:leather",
"c": "minecraft:chain",
"t": "minecraft:tripwire_hook"
},
"pattern": [
"# #",
"c#c",
"t t"
],
"key": {
"#": {"item": "minecraft:leather"},
"c": {"item": "minecraft:chain"},
"t": {"item": "minecraft:tripwire_hook"}
},
"result": {
"id": "minecraft:saddle",
"count": 1
Expand Down
4 changes: 2 additions & 2 deletions pack.mcmeta
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"pack":{
"pack_format": 4,
"supported_formats": {"min_inclusive": 4, "max_inclusive": 48},
"description": "§6Horse Armor Craft§r: §oCrafting recipes for horse armors and saddle\n §2v1.48.0; by MeeniMc; CC BY-NC-SA 4.0\n §9https://modrinth.com/datapack/horseArmorCraft"
"supported_formats": [4, 61],
"description": "§6Horse Armor Craft§r: §oCrafting recipes for horse armors and saddle\n §2v1.61.0; by MeeniMc; CC BY-NC-SA 4.0\n §9https://modrinth.com/datapack/horseArmorCraft"
}
}

0 comments on commit 5a7dd2f

Please sign in to comment.