From a7779f8be2d92f962fa0f52d316080b8b4b7ce8a Mon Sep 17 00:00:00 2001 From: Sokomine Date: Fri, 19 Sep 2014 06:03:05 +0200 Subject: [PATCH] added crafting receipe --- init.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.lua b/init.lua index 503294b..8502a3b 100644 --- a/init.lua +++ b/init.lua @@ -468,3 +468,9 @@ minetest.register_node( 'chesttools:shared_chest', { return nil; end, }) + +minetest.register_craft({ + output = 'chesttools:shared_chest', + type = 'shapeless', + recipe = { 'default:steel_ingot', 'default:chest_locked' }, +})