-
Notifications
You must be signed in to change notification settings - Fork 9
/
settings.lua
81 lines (81 loc) · 1.85 KB
/
settings.lua
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
data:extend({
{
type = "bool-setting",
name = "autodeconstruct-preserve-inserter-chains",
setting_type = "runtime-global",
default_value = true,
order = "ad-ab",
},
{
type = "bool-setting",
name = "autodeconstruct-remove-target",
setting_type = "runtime-global",
default_value = true,
order = "ad-ab",
},
{
type = "bool-setting",
name = "autodeconstruct-remove-beacons",
setting_type = "runtime-global",
default_value = true,
order = "ad-ac",
},
{
type = "bool-setting",
name = "autodeconstruct-remove-belts",
setting_type = "runtime-global",
default_value = false,
order = "ad-ad",
},
{
type = "bool-setting",
name = "autodeconstruct-remove-wired-belts",
setting_type = "runtime-global",
default_value = false,
order = "ad-ae",
},
{
type = "bool-setting",
name = "autodeconstruct-remove-wired",
setting_type = "runtime-global",
default_value = false,
order = "ad-aa",
},
{
type = "bool-setting",
name = "autodeconstruct-remove-fluid-drills",
setting_type = "runtime-global",
default_value = true,
order = "ad-ba",
},
{
type = "bool-setting",
name = "autodeconstruct-build-pipes",
setting_type = "runtime-global",
default_value = true,
order = "ad-bb",
},
{
type = "string-setting",
name = "autodeconstruct-pipe-name",
setting_type = "runtime-global",
default_value = "pipe",
order = "ad-bc",
},
{
type = "string-setting",
name = "autodeconstruct-space-pipe-name",
setting_type = "runtime-global",
default_value = "se-space-pipe",
hidden = true,
order = "ad-bd",
},
{
type = "string-setting",
name = "autodeconstruct-blacklist",
setting_type = "runtime-global",
default_value = "",
allow_blank = true,
order = "ad-ee"
}
})