forked from Factorio-Access/FactorioAccess
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings-updates.lua
More file actions
33 lines (33 loc) · 803 Bytes
/
Copy pathsettings-updates.lua
File metadata and controls
33 lines (33 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
data:extend({
{
type = "int-setting",
name = "VehicleSnap_amount",
setting_type = "runtime-per-user",
minimum_value = 4,
default_value = 8,
},
{
type = "string-setting",
name = "aai-loaders-mode",
setting_type = "startup",
default_value = "expensive",
allowed_values = { "lubricated", "expensive", "graphics-only" },
order = "a",
},
{
type = "bool-setting",
name = "PDA-setting-smart-roads-enabled",
setting_type = "startup",
default_value = true,
order = "ab",
},
{
type = "int-setting",
name = "PDA-setting-assist-min-speed",
setting_type = "runtime-global",
default_value = 9,
minimum_value = 6,
maximum_value = 10000,
order = "d",
},
})