-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsettings.lua
More file actions
47 lines (46 loc) · 1.16 KB
/
settings.lua
File metadata and controls
47 lines (46 loc) · 1.16 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
--[[ Copyright (c) 2019 robot256 (MIT License)
* Project: Multiple Unit Train Control
* File: settings.lua
* Description: Setting to control MU operation.
--]]
data:extend{
{
type = "string-setting",
name = "multiple-unit-train-control-mode",
order = "aa",
setting_type = "runtime-global",
default_value = "tech-unlock",
allowed_values = {"disabled","basic","advanced","tech-unlock"}
},
{
type = "int-setting",
name = "multiple-unit-train-control-on_nth_tick",
order = "ab",
setting_type = "runtime-global",
minimum_value = 0,
default_value = 300
},
{
type = "string-setting",
name = "multiple-unit-train-control-debug",
order = "ac",
setting_type = "runtime-global",
default_value = "info",
allowed_values = {"none","error","info","debug"}
},
{
type = "bool-setting",
name = "multiple-unit-train-control-allow_yuoki_steam",
order = "aa",
setting_type = "startup",
default_value = false
},
{
type = "string-setting",
name = "multiple-unit-train-control-blacklist",
order = "ab",
setting_type = "startup",
default_value = "",
allow_blank = true
},
}