-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsettings.lua
More file actions
32 lines (32 loc) · 900 Bytes
/
settings.lua
File metadata and controls
32 lines (32 loc) · 900 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
data:extend({
{
type = "bool-setting",
name = "Use-Mod-Color-for-pipes",
setting_type = "startup", --"startup", "runtime-global", "runtime-per-user"
default_value = true
},
-- {
-- type = "bool-setting",
-- name = "Use-Mod-Color-for-beacons",
-- setting_type = "startup", --"startup", "runtime-global", "runtime-per-user"
-- default_value = true
-- },
{
type = "bool-setting",
name = "Use-Mod-Color-for-heat-pipes",
setting_type = "startup", --"startup", "runtime-global", "runtime-per-user"
default_value = true
},
{
type = "bool-setting",
name = "Use-Mod-Color-for-roboports",
setting_type = "startup", --"startup", "runtime-global", "runtime-per-user"
default_value = true
},
{
type = "bool-setting",
name = "Use-Mod-Color-for-steam-generators",
setting_type = "startup", --"startup", "runtime-global", "runtime-per-user"
default_value = true
}
})