From b320a7db8f2f6d2cf3d5a025c05d858f96455cf8 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Wed, 2 Oct 2013 13:43:50 -0400 Subject: All leaf decay values sped up a bit and palm leaf decay radius changed to 15, by default (does not affect existing world - admins will need to change the moretrees_settings.txt file manually, if so desired) Palms make more saplings now. (Affects all worlds) --- node_defs.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'node_defs.lua') diff --git a/node_defs.lua b/node_defs.lua index a71b5c3..897a3c7 100644 --- a/node_defs.lua +++ b/node_defs.lua @@ -85,6 +85,13 @@ for i in ipairs(moretrees.treelist) do -- player will get leaves only if he/she gets no saplings, -- this is because max_items is 1 + + local droprarity = 100 + + if treename ~= "palm" then + droprarity = 20 + end + minetest.register_node("moretrees:"..treename.."_leaves", { description = treedesc.." Leaves", drawtype = "allfaces_optional", @@ -96,7 +103,7 @@ for i in ipairs(moretrees.treelist) do drop = { max_items = 1, items = { - {items = {"moretrees:"..treename.."_sapling"}, rarity = 100 }, + {items = {"moretrees:"..treename.."_sapling"}, rarity = droprarity }, {items = {"moretrees:"..treename.."_leaves"} } } }, -- cgit v1.2.3