This commit is contained in:
2026-05-02 03:13:35 +09:00
parent 6466f04d0f
commit 882c398f7a
2 changed files with 29 additions and 5 deletions
+28
View File
@@ -1,5 +1,33 @@
local main = {}
function main.open(player)
if not player then
return
end
if not player.opened then
return
end
if not player.opened.valid then
return
end
if player.opened.type ~= 'proxy-container' then
return
end
if not player.opened.proxy_target_inventory then
return
end
if player.opened.proxy_target_inventory ~= defines.inventory.lab_input then
return
end
player.opened = nil
end
function main.build(event)
if event.entity.type ~= 'lab' then
return