diff --git a/src/main/resources/data/gunswithoutroses/recipes/flint_bullet.json b/src/main/resources/data/gunswithoutroses/recipes/flint_bullet.json index 76abbdd4..0c7d36d4 100644 --- a/src/main/resources/data/gunswithoutroses/recipes/flint_bullet.json +++ b/src/main/resources/data/gunswithoutroses/recipes/flint_bullet.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "#G#", - "###" - ], - "key": { - "#": { "item": "minecraft:flint" }, - "G": { "tag": "forge:gunpowder" } - }, + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { "item": "minecraft:flint" }, + { "item": "minecraft:flint" }, + { "item": "minecraft:flint" }, + { "item": "minecraft:flint" }, + { "tag": "forge:gunpowder" } + ], "result": { "item": "gunswithoutroses:flint_bullet", "count": 32 } } \ No newline at end of file diff --git a/src/main/resources/data/gunswithoutroses/recipes/iron_bullet.json b/src/main/resources/data/gunswithoutroses/recipes/iron_bullet.json index a76f90e0..439659ab 100644 --- a/src/main/resources/data/gunswithoutroses/recipes/iron_bullet.json +++ b/src/main/resources/data/gunswithoutroses/recipes/iron_bullet.json @@ -1,13 +1,11 @@ { - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "#G#", - "###" - ], - "key": { - "#": { "tag": "forge:ingots/iron" }, - "G": { "tag": "forge:gunpowder" } - }, + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { "tag": "forge:ingots/iron" }, + { "tag": "forge:ingots/iron" }, + { "tag": "forge:ingots/iron" }, + { "tag": "forge:ingots/iron" }, + { "tag": "forge:gunpowder" } + ], "result": { "item": "gunswithoutroses:iron_bullet", "count": 32 } } \ No newline at end of file