-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsettings.lua
More file actions
32 lines (32 loc) · 821 Bytes
/
settings.lua
File metadata and controls
32 lines (32 loc) · 821 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 = "fh-set-filter-on-inserter",
setting_type = "runtime-global",
default_value = true,
order = "a",
},
{
type = "string-setting",
name = "fh-default-item-on-splitter",
allow_blank = true,
auto_trim = true,
setting_type = "runtime-global",
default_value = "deconstruction-planner,no-item",
order = "b",
},
{
type = "bool-setting",
name = "fh-add-fuel-items",
setting_type = "runtime-global",
default_value = true,
order = "c",
},
{
type = "bool-setting",
name = "fh-show-only-unlocked-qualities",
setting_type = "runtime-global",
default_value = false,
order = "d",
},
}