Add workaround to prevent random detached inventory doesn't exist warning when right-clicking entities with inventory

This commit is contained in:
teknomunk 2024-10-13 14:37:40 -05:00
parent 72b00a0729
commit b5bd02fa4f
1 changed files with 5 additions and 1 deletions

View File

@ -113,7 +113,11 @@ function mcl_entity_invs.show_inv_form(ent,player,text)
local playername = player:get_player_name()
-- Workaround: wait at least 50ms to ensure that the detached inventory exists before
-- the formspec attempts to use it. (See https://git.minetest.land/VoxeLibre/VoxeLibre/issues/4670#issuecomment-84875)
minetest.after(0.05, function()
minetest.show_formspec(playername, ent._inv_id, load_default_formspec (ent, text))
end)
end
local function drop_inv(ent)