forked from VoxeLibre/VoxeLibre
Reenable creative formspec armor update
This commit is contained in:
parent
9e83e531bd
commit
452cd26558
|
@ -431,15 +431,16 @@ minetest.register_on_joinplayer(function(player)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
---@param player ObjectRef
|
---@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)
|
local player_gamemode = mcl_gamemode.get_gamemode(player)
|
||||||
if player_gamemode == "creative" then
|
if player_gamemode == "creative" then
|
||||||
--if armor_change_only then
|
if armor_change_only then
|
||||||
-- Stay on survival inventory plage if only the armor has been changed
|
-- Stay on survival inventory plage if only the armor has been changed
|
||||||
-- mcl_inventory.set_creative_formspec(player, 0, 0, nil, nil, "inv")
|
mcl_inventory.set_creative_formspec(player, 0, 0, nil, nil, "inv")
|
||||||
--else
|
else
|
||||||
mcl_inventory.set_creative_formspec(player, 0, 1)
|
mcl_inventory.set_creative_formspec(player, 0, 1)
|
||||||
--end
|
end
|
||||||
elseif player_gamemode == "survival" then
|
elseif player_gamemode == "survival" then
|
||||||
player:set_inventory_formspec(mcl_inventory.build_survival_formspec(player))
|
player:set_inventory_formspec(mcl_inventory.build_survival_formspec(player))
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue