Update: Cocoa cannot grow in low light

This commit is contained in:
tenplus1 2015-01-04 11:59:32 +00:00
parent 9ffbbf4c0e
commit e94fb0dbce
1 changed files with 5 additions and 2 deletions

View File

@ -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