diff options
Diffstat (limited to 'leafdecay.lua')
-rw-r--r-- | leafdecay.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/leafdecay.lua b/leafdecay.lua index 3bce131..cf6743f 100644 --- a/leafdecay.lua +++ b/leafdecay.lua @@ -4,7 +4,8 @@ local process_drops = function(pos, name) local drops = minetest.get_node_drops(name) for _,dropitem in ipairs(drops) do - if dropitem ~= name then + if dropitem ~= name + or (string.find(name, "leaves") and moretrees.decay_leaves_as_items) then local newpos = { x=pos.x + math.random() - 0.5, y=pos.y + math.random() - 0.5, |