-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsettings.lua
More file actions
34 lines (34 loc) · 890 Bytes
/
Copy pathsettings.lua
File metadata and controls
34 lines (34 loc) · 890 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
data:extend({
{
type = "bool-setting",
name = "geothermal-uses-tungsten",
setting_type = "startup",
default_value = false,
order = "aa",
},
{
type = "bool-setting",
name = "geothermal-t2-uses-tungsten",
setting_type = "startup",
default_value = false,
order = "ab",
},
{
type = "double-setting",
name = "geothermal-power-factor",
setting_type = "startup",
default_value = 1,
order = "c",
minimum_value = 0.5,
maximum_value = 10,
},
{
type = "double-setting",
name = "geothermal-byproduct-rate",
setting_type = "startup",
default_value = 1,
order = "e",
minimum_value = 0.1,
maximum_value = 10,
}
})