Avoid crash if entity not defined.

This commit is contained in:
Pierre-Yves Rollo 2018-12-02 15:22:37 +01:00
parent bcc181cb15
commit b88f67f015
1 changed files with 4 additions and 0 deletions

View File

@ -117,6 +117,10 @@ end
--- Entity update
function update_entity(entity)
if not entity then
return
end
if not entity.nodepos then
entity.object:remove() -- Remove old/buggy entity
return