From 54755edc680ebc929a08e15f97b7248d09cbd39c Mon Sep 17 00:00:00 2001 From: Kotolegokot Date: Tue, 14 May 2013 20:46:32 +0600 Subject: [PATCH] Fix recipe of torches --- mods/trees/registration.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mods/trees/registration.lua b/mods/trees/registration.lua index 38f90d0..15d8761 100644 --- a/mods/trees/registration.lua +++ b/mods/trees/registration.lua @@ -609,6 +609,12 @@ function realtest.register_tree(name, TreeDef) recipe=tree.name.."_log", }) + minetest.register_craft({ + type = "cooking", + output = "default:torch 2", + recipe = tree.name.."_stick" + }) + minetest.register_abm({ nodenames = {tree.name.."_sapling"}, neighbors = tree.grounds,