Reenable creative formspec armor update

This commit is contained in:
AFCMS 2022-09-10 11:05:59 +02:00
parent 9e83e531bd
commit 452cd26558
No known key found for this signature in database
GPG Key ID: 8720389A25B652E3
1 changed files with 8 additions and 7 deletions

View File

@ -431,15 +431,16 @@ minetest.register_on_joinplayer(function(player)
end)
---@param player ObjectRef
function mcl_inventory.update_inventory(player)
---@param armor_change_only? boolean
function mcl_inventory.update_inventory(player, armor_change_only)
local player_gamemode = mcl_gamemode.get_gamemode(player)
if player_gamemode == "creative" then
--if armor_change_only then
-- Stay on survival inventory plage if only the armor has been changed
-- mcl_inventory.set_creative_formspec(player, 0, 0, nil, nil, "inv")
--else
mcl_inventory.set_creative_formspec(player, 0, 1)
--end
if armor_change_only then
-- Stay on survival inventory plage if only the armor has been changed
mcl_inventory.set_creative_formspec(player, 0, 0, nil, nil, "inv")
else
mcl_inventory.set_creative_formspec(player, 0, 1)
end
elseif player_gamemode == "survival" then
player:set_inventory_formspec(mcl_inventory.build_survival_formspec(player))
end