-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsettings.lua
More file actions
33 lines (33 loc) · 859 Bytes
/
settings.lua
File metadata and controls
33 lines (33 loc) · 859 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 = "string-setting",
name = "bztitanium-recipe-bypass",
setting_type = "startup",
default_value = "",
allow_blank = true,
},
{
type = "string-setting",
name = "bztitanium-mining-fluid",
setting_type = "startup",
default_value = "lubricant",
allowed_values = ((mods.Krastorio or mods["Krastorio-spaced-out"]) and {"lubricant", "sulfuric-acid", "kr-chlorine"} or {"lubricant", "sulfuric-acid"}),
},
{
type = "int-setting",
name = "bztitanium-mining-fluid-amount",
setting_type = "startup",
default_value = 3,
minimum_value = 1,
maximum_value = 1000,
},
{
type = "double-setting",
name = "bztitanium-ore-workaround-probability",
hidden = true, -- deprecated
setting_type = "runtime-global",
default_value = .01,
minimum_value = .00001,
maximum_value = .1,
},
})