forked from LovelySanta/FactorioMod-MoreScience
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
34 lines (31 loc) · 827 Bytes
/
Copy pathsettings.lua
File metadata and controls
34 lines (31 loc) · 827 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{
{ -- add more lamp colors
type = "bool-setting",
name = "MS-lamp-colors",
setting_type = "startup",
default_value = true,
order = "MS-a[lamp-colors]",
},
{ -- barrel stack size
type = "int-setting",
name = "MS-barrel-stack-size",
setting_type = "startup",
minimum_value = 1,
default_value = 15,
order = "MS-b[barreling]-a[recycling]",
},
{ -- allow barrel recycling recipe
type = "bool-setting",
name = "MS-allow-empty-barrel-recycling",
setting_type = "startup",
default_value = true,
order = "MS-b[barreling]-a[recycling]",
},
{ -- rocket lauching extended
type = "bool-setting",
name = "MS-rocket-launching-extended",
setting_type = "startup",
default_value = false,
order = "MS-c[rocket]-a[extended]",
},
}