json cleanup

This commit is contained in:
NatureFreshMilk 2019-02-27 07:27:21 +01:00
parent 8b43ed493b
commit 981336b44b

View File

@ -8,19 +8,8 @@ function mail.load()
end
end
function save_json()
local file = io.open(minetest.get_worldpath().."/mail.json", "w")
if file and file:write(minetest.write_json(mail.messages)) and file:close() then
return true
else
minetest.log("error","[mail] Json-Save failed - messages may be lost!")
return false
end
end
function mail.save()
save_json()
local file = io.open(minetest.get_worldpath().."/mail.db","w")
if file and file:write(minetest.serialize(mail.messages)) and file:close() then
return true