trees: Reduce local variables (#2637)

master
orbea 2020-04-07 17:36:03 +00:00 committed by GitHub
parent 42931ce003
commit f22f94982a
1 changed files with 1 additions and 3 deletions

View File

@ -16,9 +16,7 @@ function default.can_grow(pos)
if not node_under then
return false
end
local name_under = node_under.name
local is_soil = minetest.get_item_group(name_under, "soil")
if is_soil == 0 then
if minetest.get_item_group(node_under.name, "soil") == 0 then
return false
end
local light_level = minetest.get_node_light(pos)