mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-01-08 00:39:30 +02:00
16 lines
343 B
Lua
16 lines
343 B
Lua
local Public = {}
|
|
|
|
function Public.reset()
|
|
for index = 1, table.size(game.forces), 1 do
|
|
local force = game.forces[index]
|
|
if force ~= nil then
|
|
force.clear_chart('nauvis')
|
|
end
|
|
end
|
|
end
|
|
|
|
--local Event = require 'utils.event'
|
|
--Event.add(defines.events.on_chunk_charted, on_chunk_charted)
|
|
|
|
return Public
|