forked from VoxeLibre/VoxeLibre
Attacking mobs don't care if they cant make a jump.
they try anyway
This commit is contained in:
parent
70beaf6b3d
commit
636e5545a7
|
@ -1448,7 +1448,7 @@ local do_jump = function(self)
|
||||||
}, "air")
|
}, "air")
|
||||||
|
|
||||||
-- we don't attempt to jump if there's a stack of blocks blocking
|
-- we don't attempt to jump if there's a stack of blocks blocking
|
||||||
if minetest.registered_nodes[nodTop.name].walkable == true then
|
if minetest.registered_nodes[nodTop.name].walkable == true and not (self.attack and self.state == "attack") then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue