forked from brevven/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
36 lines (36 loc) · 796 Bytes
/
Copy pathsettings.lua
File metadata and controls
36 lines (36 loc) · 796 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
34
35
36
data:extend({
{
type = "string-setting",
name = "bzcarbon-recipe-bypass",
setting_type = "startup",
default_value = "",
allow_blank = true,
},
{
type = "string-setting",
name = "bzcarbon-enable-fullerenes",
setting_type = "startup",
default_value = "yes",
allowed_values = {"no", "yes"},
},
{
type = "string-setting",
name = "bzcarbon-enable-carbon-black",
setting_type = "startup",
default_value = "no",
allowed_values = {"no", "yes"},
},
{
type = "string-setting",
name = "bzcarbon-enable-rough-diamond",
setting_type = "startup",
default_value = mods["rso-mod"] and "yes" or "no",
allowed_values = {"no", "yes"},
},
{
type = "bool-setting",
name = "bzcarbon-list",
setting_type = "startup",
default_value = false,
},
})