master #5

Merged
epCode merged 255 commits from VoxeLibre/VoxeLibre:master into master 2021-02-02 23:20:01 +01:00
1 changed files with 3 additions and 5 deletions
Showing only changes of commit 02777b1f65 - Show all commits

View File

@ -1108,15 +1108,13 @@ if progressive_mode then
local meta = player:get_meta()
local name = player:get_player_name()
local data = player_data[name]
local inv_items = data.inv_items
if not inv_items then
inv_items = {}
end
if not data or not data.inv_items then
if not data then
return
end
local inv_items = data.inv_items or {}
meta:set_string("inv_items", serialize(inv_items))
end