Remove entity where display node not found

master
Pierre-Yves Rollo 2018-12-08 19:27:08 +01:00
parent 86db2d2c72
commit ca28c5e835
1 changed files with 3 additions and 0 deletions

View File

@ -133,6 +133,9 @@ function update_entity(entity)
-- Call on_display_update callback of a node for one of its display entities
ndef.display_entities[entity.name].on_display_update(entity.nodepos,
entity.object)
else
-- Display node has been removed, remove entity also
entity.object:remove()
end
end