Checks light above crop and not inside crop.

This commit is contained in:
TenPlus1 2016-05-26 21:29:13 +01:00
parent b7cafd19a3
commit 3d59270aef
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
--[[ --[[
Minetest Farming Redo Mod 1.22 (24th May 2016) Minetest Farming Redo Mod 1.22 (26th May 2016)
by TenPlus1 by TenPlus1
NEW growing routine by prestidigitator NEW growing routine by prestidigitator
auto-refill by crabman77 auto-refill by crabman77
@ -428,7 +428,7 @@ function farming.plant_growth_timer(pos, elapsed, node_name)
end end
local growth local growth
local light_pos = {x = pos.x, y = pos.y, z = pos.z} local light_pos = {x = pos.x, y = pos.y + 1, z = pos.z}
local lambda = elapsed / STAGE_LENGTH_AVG local lambda = elapsed / STAGE_LENGTH_AVG
if lambda < 0.1 then if lambda < 0.1 then