fix nil check

This commit is contained in:
TenPlus1 2019-05-20 17:26:20 +01:00
parent 975175e7b8
commit e4ca52fafb
1 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,7 @@ local use_cmi = minetest.global_exists("cmi")
mobs = {
mod = "redo",
version = "20190513",
version = "20190520",
intllib = S,
invis = minetest.global_exists("invisibility") and invisibility or {},
}
@ -463,7 +463,8 @@ local ray_line_of_sight = function(self, pos1, pos2)
local name = minetest.get_node(thing.under).name
if minetest.registered_items[name].walkable then return false end
if minetest.registered_items[name]
and minetest.registered_items[name].walkable then return false end
end
thing = ray:next()