Skip to content

Commit bb2eab0

Browse files
committed
Use the ore dictionary for upgrade recipes
See dan200#517 for motivation
1 parent e8c0cf3 commit bb2eab0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/resources/assets/computercraft/recipes/advanced_computer_upgrade.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"# #"
77
],
88
"key": {
9-
"#": { "item": "minecraft:gold_ingot" },
9+
"#": { "type": "forge:ore_dict", "ore": "ingotGold" },
1010
"C": { "type": "computercraft:computer", "item": "computercraft:computer", "family": "Normal" }
1111
},
1212
"family": "Advanced",

src/main/resources/assets/computercraft/recipes/advanced_pocket_computer_upgrade.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"# #"
77
],
88
"key": {
9-
"#": { "item": "minecraft:gold_ingot" },
9+
"#": { "type": "forge:ore_dict", "ore": "ingotGold" },
1010
"C": { "item": "computercraft:pocket_computer", "data": 0 }
1111
},
1212
"family": "Advanced",

src/main/resources/assets/computercraft/recipes/advanced_turtle_upgrade.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
" B "
77
],
88
"key": {
9-
"#": { "item": "minecraft:gold_ingot" },
10-
"B": { "item": "minecraft:gold_block" },
9+
"#": { "type": "forge:ore_dict", "ore": "ingotGold" },
10+
"B": { "type": "forge:ore_dict", "ore": "blockGold" },
1111
"C": [
1212
{ "type": "computercraft:computer", "item": "computercraft:turtle", "family": "Normal" },
1313
{ "item": "computercraft:turtle_expanded", "data": 0 }

0 commit comments

Comments
 (0)