fix little mistakes

This commit is contained in:
HybridDog 2014-12-07 15:33:43 +01:00
parent 8e58c5b96e
commit fdd5051b99
1 changed files with 4 additions and 1 deletions

View File

@ -630,6 +630,9 @@ for name,i in pairs(mushrooms_list) do
end
-- should disallow lag
if not abm_allowed then
return
end
abm_allowed = false
minetest.after(2, function() abm_allowed = true end)
@ -641,7 +644,7 @@ for name,i in pairs(mushrooms_list) do
if math.random(3) == 1 then
-- don't only use the current y for them
for y = 2,0,-1 do
for y = 1,-1,-1 do
local pos = {x=p.x, y=p.y+y, z=p.z}
if minetest.get_node(pos).name ~= "air" then
break