From 48969e6314ce54bb140d896a79268bd80bb46c93 Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Thu, 9 Aug 2018 19:52:50 +0100 Subject: [PATCH] 4x burnt out torches = 1x stick --- init.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.lua b/init.lua index 954851a..7dfe5d4 100644 --- a/init.lua +++ b/init.lua @@ -106,6 +106,12 @@ minetest.register_craft({ recipe = {"real_torch:torch", "real_torch:coal_powder"}, }) +-- 4x burnt out torches = 1x stick +minetest.register_craft({ + type = "shapeless", + output = "default:stick", + recipe = {"real_torch:torch", "real_torch:torch", "real_torch:torch", "real_torch:torch"}, +}) -- Make sure Ethereal mod isn't running as this Abm already exists there if not minetest.get_modpath("ethereal") then