diff options
author | MT-Modder <thomas.waits148@gmail.com> | 2015-02-05 15:24:22 -0500 |
---|---|---|
committer | MT-Modder <thomas.waits148@gmail.com> | 2015-02-05 15:24:22 -0500 |
commit | 81ffa957d215d15ee5c9e433654d98529128d1b8 (patch) | |
tree | dcaa40edffe6b58df236f593d331611d27232a91 | |
parent | 1bf3151320120d293fba71475c51a43b1c5fe4c7 (diff) |
Add craft recipe for digiline chest
-rw-r--r-- | digilines_inventory/init.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/digilines_inventory/init.lua b/digilines_inventory/init.lua index 72275ea..89aaabc 100644 --- a/digilines_inventory/init.lua +++ b/digilines_inventory/init.lua @@ -135,3 +135,9 @@ minetest.register_node("digilines_inventory:chest", { minetest.log("action", player:get_player_name().." takes stuff from chest at "..minetest.pos_to_string(pos)) end }) + +minetest.register_craft({ + type = "shapeless", + output = "digilines_inventory:chest", + recipe = {"default:chest", "digilines:wire_std_00000000"} +}) |