mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-16 16:11:06 +01:00
Make vine protect from fall damage
This commit is contained in:
parent
5f82e76862
commit
0d619ec6a8
1 changed files with 3 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue