diff options
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -88,8 +88,11 @@ minetest.register_abm({ if not minetest.registered_nodes[plant..(numb + 1)] then return end -- Check for Cocoa Pod - if plant == "farming:cocoa_" and minetest.find_node_near(pos, 1, {"default:jungletree"}) then - + if plant == "farming:cocoa_" + and minetest.find_node_near(pos, 1, {"default:jungletree", "moretrees:jungletree_leaves_green"}) then + + if minetest.get_node_light(pos) < 12 then return end + else -- check if on wet soil |