Depollute the code

This commit is contained in:
Zweihorn 2019-05-18 10:26:52 +02:00
parent 23c20c32b0
commit ad65ef6d3f
2 changed files with 2 additions and 3 deletions

View File

@ -118,7 +118,7 @@ minetest.register_craft( {
recipe = {
{"farming:string", "farming:string"},
{"farming:string", "farming:string"},
{"default:stick", ""}
{"group:stick", ""}
}
})

View File

@ -240,8 +240,7 @@ function flowers.mushroom_spread(pos, node)
end
local pos2 = positions[math.random(#positions)]
pos2.y = pos2.y + 1
if minetest.get_node_light(pos, 0.5) <= 3 and
minetest.get_node_light(pos2, 0.5) <= 3 then
if minetest.get_node_light(pos, 0.5) <= 3 then
minetest.set_node(pos2, {name = node.name})
end
end