1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-10 00:43:27 +02:00
ComfyFactorio/modules/scrap_towny_ffa/limited_radar.lua

15 lines
309 B
Lua
Raw Normal View History

2021-02-06 22:42:10 +02:00
local Public = {}
function Public.reset()
for index = 1, table.size(game.forces), 1 do
2021-02-06 22:42:10 +02:00
local force = game.forces[index]
if force ~= nil then
force.clear_chart("nauvis")
end
2021-02-06 22:42:10 +02:00
end
end
--local Event = require 'utils.event'
--Event.add(defines.events.on_chunk_charted, on_chunk_charted)
return Public