Added auto left gui update every 15 mins

This commit is contained in:
Cooldude2606
2017-12-24 21:43:02 +00:00
parent 97b6a8244d
commit 68f61bcb85

View File

@@ -25,4 +25,10 @@ function Gui:_load_parts(parts)
end
end
Event.register(defines.events.on_tick, function(event)
if (event.tick/(3600*game.speed)) % 15 == 0 then
Gui.left.update()
end
end)
return Gui