1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-13 00:25:19 +02:00
This commit is contained in:
Novatux
2014-07-12 10:51:09 +02:00
parent eec456be63
commit 24a631ee2a

View File

@@ -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)