Remove spaces

This commit is contained in:
Elias Fleckenstein 2021-01-03 14:32:31 +01:00
parent 6cc029a6e4
commit 0fe1707c2f
1 changed files with 3 additions and 3 deletions

View File

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