From 747e734a3b1b6e79df90f240b74bf12089e93ed9 Mon Sep 17 00:00:00 2001 From: SmokeyDope Date: Sat, 9 Sep 2023 16:36:05 +0000 Subject: [PATCH] recipe add: 1 flint from 3 gravel --- mcl_more_recipes/init.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mcl_more_recipes/init.lua b/mcl_more_recipes/init.lua index 4e5044e..5491669 100644 --- a/mcl_more_recipes/init.lua +++ b/mcl_more_recipes/init.lua @@ -19,3 +19,8 @@ minetest.register_craft({ } }) +minetest.register_craft({ + type = "shapeless", + output = "mcl_core:flint", + recipe = { "mcl_core:gravel", "mcl_core:gravel", "mcl_core:gravel", }, +}) \ No newline at end of file