forked from mtcontrib/plantlife_modpack
		
	fix crash if detected light at a node is nil
This commit is contained in:
		@@ -43,7 +43,7 @@ end
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
function nature:grow_node(pos, nodename)
 | 
					function nature:grow_node(pos, nodename)
 | 
				
			||||||
    if pos ~= nil then
 | 
					    if pos ~= nil then
 | 
				
			||||||
        local light_enough = minetest.get_node_light(pos, nil)
 | 
					        local light_enough = (minetest.get_node_light(pos, nil) or 0)
 | 
				
			||||||
                >= nature.minimum_growth_light 
 | 
					                >= nature.minimum_growth_light 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if is_not_young(pos) and light_enough then
 | 
					        if is_not_young(pos) and light_enough then
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user