mirror of
https://github.com/mt-mods/plantlife_modpack.git
synced 2025-07-12 21:10:21 +02:00
fixes
This commit is contained in:
@ -94,8 +94,7 @@ if abstract_ferns.config.enable_horsetails_spawning == true then
|
||||
action = function(pos, node)
|
||||
local p_top = {x = pos.x, y = pos.y + 1, z = pos.z}
|
||||
local n_top = minetest.get_node_or_nil(p_top)
|
||||
if not n_top then return end
|
||||
if n_top.name ~= "air" then return end
|
||||
if not n_top or n_top.name ~= "air" then return end
|
||||
|
||||
local NEAR_DST = 2
|
||||
if #minetest.find_nodes_in_area(
|
||||
|
Reference in New Issue
Block a user