4x burnt out torches = 1x stick

This commit is contained in:
TenPlus1 2018-08-09 19:52:50 +01:00
parent 3988f7e5c1
commit 48969e6314

View File

@ -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