Remove duplicated armor update code

This commit is contained in:
AFCMS 2023-07-14 00:12:47 +02:00
parent dc20267b4f
commit df2ab1fd8c
No known key found for this signature in database
GPG Key ID: 8720389A25B652E3
1 changed files with 0 additions and 6 deletions

View File

@ -107,12 +107,6 @@ minetest.register_on_joinplayer(function(player)
player:hud_set_hotbar_image("mcl_inventory_hotbar.png")
player:hud_set_hotbar_selected_image("mcl_inventory_hotbar_selected.png")
local old_update_player = mcl_armor.update_player
function mcl_armor.update_player(player, info)
old_update_player(player, info)
set_inventory(player, true)
end
-- In Creative Mode, the initial inventory setup is handled in creative.lua
if not minetest.is_creative_enabled(player:get_player_name()) then
set_inventory(player)