Skip to content

Commit ffe7e1b

Browse files
committed
fixed indents
1 parent 452b8e4 commit ffe7e1b

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

LICENSE.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ Copyright (c) 2018 Optera
22

33
This software is provided without warranty and the author/license holder cannot be held liable.
44

5-
- Private Use - I am not imposing any limitations on private use, if you want to modify my work, or create your own using parts of mine, you are free to do so as long as this altered or derived work does not become accessible to the public.
6-
- No Commercial Use - You are not allowed to make money off my work. Showcasing the software through streaming or similar is exempt from this.
7-
- No Modification - Although I can't stop you from looking at my code, you are not allowed to distribute anything altered, or derived from my code without explicit permission first.
8-
- Distribution - You are allowed to redistribute my mods as is. This includes being repackaged as part of a mod pack.
5+
- Private Use - I am not imposing any limitations on private use, if you want to modify my work, or create your own using parts of mine, you are free to do so as long as this altered or derived work does not become accessible to the public.
6+
- No Commercial Use - You are not allowed to make money off my work. Showcasing the software through streaming or similar is exempt from this.
7+
- No Modification - Although I can't stop you from looking at my code, you are not allowed to distribute anything altered, or derived from my code without explicit permission first.
8+
- Distribution - You are allowed to redistribute my mods as is. This includes being repackaged as part of a mod pack.
99
- Contributions - Contributions are welcome, however due to legal reasons you have to agree to transfer ownership of said contributions to me.
1010

1111
Exceptions to the no modification rule may be granted after written requests.

migrations/1.3.0.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"virtual-signal":
33
[
44
["min-train-length", "ltn-min-train-length"],
5-
["max-train-length", "ltn-max-train-length"],
6-
["stop-priority", "ltn-provider-priority"],
7-
["min-delivery-size", "ltn-requester-threshold"]
5+
["max-train-length", "ltn-max-train-length"],
6+
["stop-priority", "ltn-provider-priority"],
7+
["min-delivery-size", "ltn-requester-threshold"]
88
]
99
}

settings.lua

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ data:extend({
1010
name = "ltn-dispatcher-enabled",
1111
order = "aa",
1212
setting_type = "runtime-global",
13-
default_value = true
13+
default_value = true
1414
},
1515
{
1616
type = "int-setting",
1717
name = "ltn-dispatcher-nth_tick",
1818
order = "ab",
1919
setting_type = "runtime-global",
20-
default_value = 2,
20+
default_value = 2,
2121
minimum_value = 1,
2222
maximum_value = 60, -- one stop per second
2323
},
@@ -26,7 +26,7 @@ data:extend({
2626
name = "ltn-dispatcher-updates-per-tick",
2727
order = "ac",
2828
setting_type = "runtime-global",
29-
default_value = 1,
29+
default_value = 1,
3030
minimum_value = 1,
3131
maximum_value = 100, -- processing too many stops/requests per tick will produce lag spikes
3232
},
@@ -47,12 +47,12 @@ data:extend({
4747
minimum_value = 0,
4848
maximum_value = 2147483647, -- prevent 32bit signed overflow
4949
},
50-
{
50+
{
5151
type = "bool-setting",
5252
name = "ltn-interface-debug-logfile",
5353
order = "af",
5454
setting_type = "runtime-global",
55-
default_value = false
55+
default_value = false
5656
},
5757
{
5858
type = "int-setting",

0 commit comments

Comments
 (0)