From 2a6a91fa87279a6fd94ac4817269cd510b7ffe48 Mon Sep 17 00:00:00 2001 From: drcrazy Date: Tue, 13 Aug 2019 13:53:28 +0300 Subject: [PATCH] Make carbon mesh shapeless --- .../crafting_table/parts/carbon_mesh.json | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/parts/carbon_mesh.json b/src/main/resources/data/techreborn/recipes/crafting_table/parts/carbon_mesh.json index 93c77f4e1..07cf136e6 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/parts/carbon_mesh.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/parts/carbon_mesh.json @@ -1,14 +1,14 @@ { - "type": "minecraft:crafting_shaped", - "pattern": [ - "CC" - ], - "key": { - "C": { - "item": "techreborn:carbon_fiber" - } - }, - "result": { - "item": "techreborn:carbon_mesh" - } -} \ No newline at end of file + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "techreborn:carbon_fiber" + }, + { + "item": "techreborn:carbon_fiber" + } + ], + "result": { + "item": "techreborn:carbon_mesh" + } +}