mirror of
https://github.com/Refactorio/RedMew.git
synced 2025-01-18 03:21:47 +02:00
16 lines
1009 B
Lua
16 lines
1009 B
Lua
Event.register(-1, function()
|
|
global.scenario = {}
|
|
global.scenario.config = {}
|
|
global.scenario.config.announcements_enabled = false -- if true announcements will be shown
|
|
global.scenario.config.announcement_delay = 1000 -- number of seconds between each announcement
|
|
global.scenario.config.score_delay = 8 -- delay in seconds before hiding rocket score window (0 = never show)
|
|
global.scenario.config.autolaunch_default = false -- default autolaunch option
|
|
global.scenario.config.logistic_research_enabled = true -- if true then research for requesters and active providers will be enabled.
|
|
global.scenario.config.mapsettings = global.scenario.config.mapsettings or {}
|
|
global.scenario.config.mapsettings.cross_width = 200 -- total width of cross
|
|
global.scenario.config.mapsettings.spiral_land_width = 70 -- width of land in spiral
|
|
global.scenario.config.mapsettings.spiral_water_width = 70 -- width of water in spiral
|
|
global.scenario.custom_functions = {}
|
|
end)
|
|
|