1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-24 03:47:58 +02:00

12 lines
257 B
Lua
Raw Normal View History

2019-03-14 18:06:39 +01:00
local event = require 'utils.event'
local gui = require "maps.biter_battles_v2.gui"
local ai = require "maps.biter_battles_v2.ai"
local function on_tick(event)
2019-03-14 22:50:09 +01:00
if game.tick % 60 ~= 0 then return end
gui()
2019-03-14 18:06:39 +01:00
end
event.add(defines.events.on_tick, on_tick)