1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2024-12-30 23:17:53 +02:00

comfy gui - don't show guis that are meant to be hidden

This commit is contained in:
Gerkiz 2021-01-11 15:57:57 +01:00
parent e1080f4c75
commit a2011ded58

View File

@ -44,7 +44,9 @@ end
function Public.comfy_panel_restore_screen_gui(player)
for _, child in pairs(player.gui.screen.children) do
child.visible = true
if child.name ~= 'ups_label' then
child.visible = true
end
end
end