Fix slimes not jumping at all

This commit is contained in:
Wuzzy 2019-09-05 00:17:52 +02:00
parent ed336829b4
commit 2423acb297
1 changed files with 2 additions and 2 deletions

View File

@ -787,10 +787,10 @@ local do_jump = function(self)
x = pos.x + dir_x,
y = pos.y + 1.5,
z = pos.z + dir_z
})
}, "air")
-- we don't attempt to jump if there's a stack of blocks blocking
if nodTop ~= nil then
if minetest.registered_nodes[nodTop.name] == true then
return false
end