Remove superfluous call

This commit is contained in:
Jean-Patrick Guerrero 2019-01-31 01:10:09 +01:00
parent 5e8079b2e8
commit 5625a0cb1c
1 changed files with 1 additions and 6 deletions

View File

@ -627,18 +627,13 @@ local function init_data(player, name)
filter = "",
pagenum = 1,
iX = sfinv_only and 8 or DEFAULT_SIZE,
items = init_items,
}
local p_items
if progressive_mode then
local meta = player:get_meta()
player_data[name].inv_items = deserialize(meta:get_string("inv_items"))
p_items = get_progressive_items(player, name)
player_data[name].p_items = p_items
end
player_data[name].items = p_items or init_items
end
local function reset_data(data)