diff --git a/Common/src/main/resources/data/hyperlighting/recipes/advanced_campfire.json b/Common/src/main/resources/data/hyperlighting/recipes/advanced_campfire.json index 995e361..87a9e19 100644 --- a/Common/src/main/resources/data/hyperlighting/recipes/advanced_campfire.json +++ b/Common/src/main/resources/data/hyperlighting/recipes/advanced_campfire.json @@ -15,5 +15,6 @@ ], "result": { "item": "hyperlighting:advanced_campfire" - } + }, + "show_notification": true } diff --git a/Common/src/main/resources/data/hyperlighting/recipes/advanced_torch.json b/Common/src/main/resources/data/hyperlighting/recipes/advanced_torch.json index c94ce89..d5369fd 100644 --- a/Common/src/main/resources/data/hyperlighting/recipes/advanced_torch.json +++ b/Common/src/main/resources/data/hyperlighting/recipes/advanced_torch.json @@ -1,11 +1,16 @@ { "type": "minecraft:crafting_shaped", "key": { - "X": { - "tag": "minecraft:wool" - }, + "X": [ + { + "tag": "minecraft:wool" + }, + { + "tag": "minecraft:coals" + } + ], "Y": { - "item": "minecraft:stick" + "tag": "minecraft:logs" } }, "pattern": [ @@ -14,6 +19,8 @@ " " ], "result": { + "count": 4, "item": "hyperlighting:advanced_torch" - } -} \ No newline at end of file + }, + "show_notification": true +}