Update Fork #9

Merged
chmodsayshello merged 403 commits from MineClone5/MineClone5:master into master 2022-08-02 15:50:37 +02:00
1 changed files with 7 additions and 4 deletions
Showing only changes of commit acda4deb3b - Show all commits

View File

@ -611,6 +611,8 @@ do
io.close(file)
if string then
local savetable = minetest.deserialize(string)
local players_stored_data = savetable and savetable.players_stored_data
if players_stored_data then
for name, players_stored_data in pairs(savetable.players_stored_data) do
doc.data.players[name] = {}
doc.data.players[name].stored_data = players_stored_data
@ -619,6 +621,7 @@ do
end
end
end
end
function doc.save_to_file()
local savetable = {}