Updated to OTCv8 3.1 rev 224

This commit is contained in:
OTCv8
2022-06-06 22:04:52 +00:00
parent 00ca45bd62
commit 9cfff63e16
111 changed files with 2292 additions and 1465 deletions

View File

@@ -116,6 +116,15 @@ function onContainerOpen(container, previousContainer)
previousContainer.itemsPanel = nil
else
containerWindow = g_ui.createWidget('ContainerWindow', modules.game_interface.getContainerPanel())
-- white border flash effect
containerWindow:setBorderWidth(2)
containerWindow:setBorderColor("#FFFFFF")
scheduleEvent(function()
if containerWindow then
containerWindow:setBorderWidth(0)
end
end, 300)
end
containerWindow:setId('container' .. container:getId())