-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.lua
More file actions
33 lines (33 loc) · 1.07 KB
/
Copy pathsettings.lua
File metadata and controls
33 lines (33 loc) · 1.07 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
data:extend({
{
type = "int-setting",
name = "railbow-rail-calculations-per-tick",
setting_type = "runtime-global",
default_value = 50,
minimum_value = 1,
maximum_value = 1000,
order = "a",
localised_name = {"settings-name.railbow-rail-calculations-per-tick"},
localised_description = {"settings-description.railbow-rail-calculations-per-tick"}
},
{
type = "int-setting",
name = "railbow-tile-calculations-per-tick",
setting_type = "runtime-global",
default_value = 1000,
minimum_value = 100,
maximum_value = 100000,
order = "b",
localised_name = {"settings-name.railbow-tile-calculations-per-tick"},
localised_description = {"settings-description.railbow-tile-calculations-per-tick"}
},
{
type = "bool-setting",
name = "railbow-instant-build",
setting_type = "runtime-per-user",
default_value = true,
order = "c",
localised_name = {"settings-name.railbow-instant-build"},
localised_description = {"settings-description.railbow-instant-build"}
}
})