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

10 lines
152 B
Lua
Raw Normal View History

2018-09-19 06:51:25 +02:00
local index = {
2019-04-02 14:35:15 +02:00
"PlayerTotals2019",
2018-10-01 14:30:23 +02:00
}
2018-09-19 06:51:25 +02:00
local data = {}
for _, i in pairs(index) do
2018-10-01 14:30:23 +02:00
table.insert(data, require ("session_data." .. i))
2018-09-19 06:51:25 +02:00
end
2018-10-01 14:30:23 +02:00
return data