Fix issue with closing containers
* Wasn't clearing references properly.
This commit is contained in:
parent
28e70516a4
commit
2296e35174
|
@ -29,12 +29,16 @@ end
|
|||
|
||||
function clean()
|
||||
for containerid,container in pairs(g_game.getContainers()) do
|
||||
destroy(container)
|
||||
end
|
||||
end
|
||||
|
||||
function destroy(container)
|
||||
if container.window then
|
||||
container.window:destroy()
|
||||
container.window = nil
|
||||
container.itemsPanel = nil
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function refreshContainerItems(container)
|
||||
|
@ -103,7 +107,7 @@ function onContainerOpen(container, previousContainer)
|
|||
end
|
||||
|
||||
function onContainerClose(container)
|
||||
if container.window then container.window:destroy() end
|
||||
destroy(container)
|
||||
end
|
||||
|
||||
function onContainerAddItem(container, slot, item)
|
||||
|
|
Loading…
Reference in New Issue