mirror of
https://github.com/minetest-mods/i3.git
synced 2025-01-13 11:40:31 +01:00
Minor cleaning
This commit is contained in:
parent
7e2256253d
commit
c87a179cb5
12
init.lua
12
init.lua
@ -2745,8 +2745,6 @@ if rawget(_G, "awards") then
|
||||
local player = core.get_player_by_name(name)
|
||||
set_fs(player)
|
||||
end)
|
||||
|
||||
core.register_on_dieplayer(set_fs)
|
||||
end
|
||||
|
||||
core.register_on_chatcommand(function(name)
|
||||
@ -3022,11 +3020,13 @@ core.register_on_dieplayer(function(player)
|
||||
local data = pdata[name]
|
||||
if not data then return end
|
||||
|
||||
data.bag_size = nil
|
||||
data.bag:set_list("main", {})
|
||||
if data.bag_size then
|
||||
data.bag_size = nil
|
||||
data.bag:set_list("main", {})
|
||||
|
||||
local inv = player:get_inventory()
|
||||
inv:set_size("main", INV_SIZE)
|
||||
local inv = player:get_inventory()
|
||||
inv:set_size("main", INV_SIZE)
|
||||
end
|
||||
|
||||
set_fs(player)
|
||||
end)
|
||||
|
Loading…
Reference in New Issue
Block a user