-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsettings.lua
More file actions
30 lines (30 loc) · 750 Bytes
/
settings.lua
File metadata and controls
30 lines (30 loc) · 750 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
data:extend({
{
type = "bool-setting",
name = "tycoon-spawn-initial-city",
setting_type = "startup",
default_value = true,
},
{
type = "int-setting",
name = "tycoon-tags-text-length",
setting_type = "runtime-global",
default_value = 16,
minimum_value = 0,
maximum_value = 32,
},
{
type = "bool-setting",
name = "tycoon-tags-show-population",
order = "4-t-s",
setting_type = "runtime-global",
default_value = true,
},
{
type = "bool-setting",
name = "tycoon-skip-check-resources",
order = "5-s-c",
setting_type = "runtime-global",
default_value = false,
},
})