mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-06 17:41:04 +00:00
Fix crash reported here: https://forum.minetest.net/viewtopic.php?f=6&t=9726
This commit is contained in:
parent
eec456be63
commit
24a631ee2a
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ local function read_file(filename)
|
|||
local t = f:read("*all")
|
||||
f:close()
|
||||
if t=="" or t==nil then return {} end
|
||||
return core.deserialize(t)
|
||||
return core.deserialize(t) or {}
|
||||
end
|
||||
|
||||
local function write_file(filename, table)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue