mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-26 12:31:05 +01:00
Fix mobs jumping against walls again and again due to a typo
This commit is contained in:
parent
f2c978c892
commit
3a02e90c3a
1 changed files with 1 additions and 1 deletions
|
@ -1280,7 +1280,7 @@ local do_jump = function(self)
|
|||
}, "air")
|
||||
|
||||
-- we don't attempt to jump if there's a stack of blocks blocking
|
||||
if minetest.registered_nodes[nodTop.name] == true then
|
||||
if minetest.registered_nodes[nodTop.name].walkable == true then
|
||||
return false
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue