fix #12 ; correct liquid_viscosity definition

master
A. Demant 2018-10-23 07:28:59 +02:00
parent 6f26a6b8d0
commit 5817a81e8d
1 changed files with 12 additions and 0 deletions

View File

@ -85,6 +85,18 @@ minetest.register_abm({
end
if #sc > 0 then
local rand_plant = math.random(1,#sc)
--[[
local pdef = minetest.registered_nodes[ sc[rand_plant] ]
local day_start=99999
local light_amount=0
for i=50,120 do
if minetest.get_node_light(ptabove,(i)/240)>pdef.light_min then
light_amount=light_amount+minetest.get_node_light(ptabove,i/240)
day_start=math.min(day_start,i)
end
end
print(pdef.light_min,day_start,light_amount)
]]
minetest.add_node(ptabove, {name=sc[rand_plant],param2=1})
minetest.get_node_timer(ptabove):start(math.random(10, 15))
end