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 ea292b3cf6
commit 0a2e22cb7c
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()
minetest.show_formspec(playername, ent._inv_id, load_default_formspec (ent, text))
-- 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)