forked from oobanooba0/TFMG
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
27 lines (27 loc) · 711 Bytes
/
Copy pathsettings.lua
File metadata and controls
27 lines (27 loc) · 711 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
data:extend({
--hidden settings for debug purposes.
{--weather or not to do the whole starting sequence.
type = "bool-setting",
name = "start-as-SELF",
setting_type = "runtime-global",
default_value = true,
forced_value = true,
hidden = true,
},
{--weather or not to do the whole starting sequence.
type = "bool-setting",
name = "SELF-has-extra-stuff",
setting_type = "runtime-global",
default_value = false,
forced_value = false,
hidden = true,
},
--visible settings
{
type = "string-setting",
name = "map-improved-contrast-mode",
setting_type = "startup",
allowed_values = {"full","only-heat","off"},
default_value = "full",
}
})