Fix mobs jumping against walls again and again due to a typo

This commit is contained in:
Lizzy Fleckenstein 2021-01-06 12:14:20 +01:00
parent f2c978c892
commit 3a02e90c3a
1 changed files with 1 additions and 1 deletions

View File

@ -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