0
0
Fork 0
This repository has been archived on 2024-05-09. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
factorio-spaghetti-lockdown/options.lua
2019-02-24 15:18:05 -08:00

19 lines
No EOL
326 B
Lua

local options = {}
options.durationUnit = {
"Seconds",
"Minutes",
"Hours",
"Days (Realtime)",
"Days (In-Game)",
}
options.durationUnitMultiplyers = {
["Seconds"] = 60,
["Minutes"] = 3600,
["Hours"] = 216000,
["Days (Realtime)"] = 5184000,
["Days (In-Game)"] = 25000,
}
return options