Merge branch 'master' into nalc-1.2

This commit is contained in:
Sys Quatre 2019-06-09 13:30:19 +02:00
commit 3fd799f058
1 changed files with 5 additions and 0 deletions

View File

@ -46,6 +46,11 @@ local function read_entities()
end
local function write_entities()
if not luaentity.entities then
-- This can happen if crashing on startup, causing another error that
-- masks the original one. Return gracefully in that case instead.
return
end
for _, entity in pairs(luaentity.entities) do
setmetatable(entity, nil)
for _, attached in pairs(entity._attached_entities) do