Make vine protect from fall damage

This commit is contained in:
NO11 2021-05-28 17:26:00 +00:00
parent 5f82e76862
commit 0d619ec6a8
1 changed files with 3 additions and 0 deletions

View File

@ -549,6 +549,9 @@ mcl_damage.register_modifier(function(obj, damage, reason)
if node.name == "mcl_core:cobweb" then
return 0
end
if node.name == "mcl_core:vine" then
return 0
end
end
pos = vector.add(pos, step)
node = minetest.get_node(pos)