Pearls don't grow on falling nodes

This commit is contained in:
FaceDeer 2019-08-04 17:30:26 -06:00
parent 19f14ea356
commit c20e3918ef
1 changed files with 6 additions and 3 deletions

View File

@ -103,9 +103,12 @@ local is_valid_mounting_node = function(c_node)
return valid_nodes[c_node]
end
local def = minetest.registered_nodes[minetest.get_name_from_content_id(c_node)]
if def ~= nil and (def.drawtype == "normal" or def.drawtype == nil) and (not def.buildable_to) then
valid_nodes[c_node] = true
return true
if def ~= nil
and (def.drawtype == "normal" or def.drawtype == nil)
and not def.buildable_to
and not (def.groups and def.groups.falling_node) then
valid_nodes[c_node] = true
return true
end
valid_nodes[c_node] = false
return false