Added extra check for line of sight when flying in custom node.

This commit is contained in:
TenPlus1 2016-06-17 11:22:04 +01:00
parent db7e02af1a
commit d1bee49785
1 changed files with 12 additions and 1 deletions

13
api.lua
View File

@ -1,5 +1,5 @@
-- Mobs Api (11th June 2016)
-- Mobs Api (17th June 2016)
mobs = {}
mobs.mod = "redo"
@ -216,6 +216,17 @@ function line_of_sight_water(self, pos1, pos2, stepsize)
return true
end
-- just incase we have a special node for flying/swimming mobs
elseif s == false
and self.fly
and self.fly_in then
local nod = minetest.get_node(pos_w).name
if nod == self.fly_in then
return true
end
end
return false