1
0
Fork 0

Clean up is_as_cliff code and convert to new style vector

This commit is contained in:
ancientmarinerdev 2023-05-08 23:33:58 +01:00
parent 8092fd573c
commit 31e6e38013
1 changed files with 3 additions and 2 deletions

View File

@ -262,8 +262,9 @@ function mob_class:is_at_water_danger(can_jump_cliff)
local ypos = pos.y + self.collisionbox[2] -- just above floor
local free_fall, blocker = minetest.line_of_sight(
{x = pos.x + dir_x, y = ypos, z = pos.z + dir_z},
{x = pos.x + dir_x, y = ypos - 3, z = pos.z + dir_z})
vector.new(pos.x + dir_x, ypos, pos.z + dir_z),
vector.new(pos.x + dir_x, ypos - 3, pos.z + dir_z))
if free_fall then
return true
else