Fix potential crash when falling onto unknown node

This commit is contained in:
Elias Fleckenstein 2021-12-19 18:59:09 +01:00
parent e2360204a7
commit bfd1fd69d1
No known key found for this signature in database
GPG Key ID: 06927A5199D6C9B2

@ -550,7 +550,8 @@ mcl_damage.register_modifier(function(obj, damage, reason)
node = minetest.get_node(pos)
end
if node then
if minetest.registered_nodes[node.name].walkable then
local def = minetest.registered_nodes[node.name]
if not def or def.walkable then
return
end
if minetest.get_item_group(node.name, "water") ~= 0 then