mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-14 15:11:05 +01:00
Make error handling safe in case pos is missing
This commit is contained in:
parent
97091de67f
commit
be269b2034
1 changed files with 5 additions and 3 deletions
|
@ -510,9 +510,11 @@ function mob_class:on_step(dtime)
|
|||
else
|
||||
warn_user_error ()
|
||||
local pos = self.object:get_pos()
|
||||
local node = minetest.get_node(pos)
|
||||
if node and node.name == "ignore" then
|
||||
minetest.log("warning", "Pos is ignored: " .. dump(pos))
|
||||
if pos then
|
||||
local node = minetest.get_node(pos)
|
||||
if node and node.name == "ignore" then
|
||||
minetest.log("warning", "Pos is ignored: " .. dump(pos))
|
||||
end
|
||||
end
|
||||
log_error (dump(retVal), dump(pos), dump(self))
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue