mirror of
https://github.com/minetest-mods/ropes.git
synced 2025-01-01 18:47:34 +01:00
Check if node is registered before trying to get content id (#20)
This commit is contained in:
parent
f761e38794
commit
bdf7332dda
@ -51,7 +51,9 @@ ropes.destroy_rope = function(pos, nodes)
|
||||
local finished = false
|
||||
local ids_to_destroy = {}
|
||||
for _, node in pairs(nodes) do
|
||||
ids_to_destroy[minetest.get_content_id(node)] = true
|
||||
if minetest.registered_nodes[node] then
|
||||
ids_to_destroy[minetest.get_content_id(node)] = true
|
||||
end
|
||||
end
|
||||
|
||||
while not finished do
|
||||
|
Loading…
Reference in New Issue
Block a user