mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-01-10 00:43:27 +02:00
13 lines
268 B
Lua
13 lines
268 B
Lua
|
local Public = {}
|
||
|
|
||
|
function Public.reset()
|
||
|
for index = 1, #game.forces, 1 do
|
||
|
local force = game.forces[index]
|
||
|
force.clear_chart("nauvis")
|
||
|
end
|
||
|
end
|
||
|
|
||
|
--local Event = require 'utils.event'
|
||
|
--Event.add(defines.events.on_chunk_charted, on_chunk_charted)
|
||
|
|
||
|
return Public
|