fixed indents

This commit is contained in:
Optera
2020-06-05 12:34:41 +02:00
parent 452b8e4f51
commit ffe7e1bbb5
3 changed files with 12 additions and 12 deletions

View File

@@ -2,10 +2,10 @@ Copyright (c) 2018 Optera
This software is provided without warranty and the author/license holder cannot be held liable.
- 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.
- No Commercial Use - You are not allowed to make money off my work. Showcasing the software through streaming or similar is exempt from this.
- 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.
- Distribution - You are allowed to redistribute my mods as is. This includes being repackaged as part of a mod pack.
- 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.
- No Commercial Use - You are not allowed to make money off my work. Showcasing the software through streaming or similar is exempt from this.
- 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.
- Distribution - You are allowed to redistribute my mods as is. This includes being repackaged as part of a mod pack.
- Contributions - Contributions are welcome, however due to legal reasons you have to agree to transfer ownership of said contributions to me.
Exceptions to the no modification rule may be granted after written requests.

View File

@@ -2,8 +2,8 @@
"virtual-signal":
[
["min-train-length", "ltn-min-train-length"],
["max-train-length", "ltn-max-train-length"],
["stop-priority", "ltn-provider-priority"],
["min-delivery-size", "ltn-requester-threshold"]
["max-train-length", "ltn-max-train-length"],
["stop-priority", "ltn-provider-priority"],
["min-delivery-size", "ltn-requester-threshold"]
]
}

View File

@@ -10,14 +10,14 @@ data:extend({
name = "ltn-dispatcher-enabled",
order = "aa",
setting_type = "runtime-global",
default_value = true
default_value = true
},
{
type = "int-setting",
name = "ltn-dispatcher-nth_tick",
order = "ab",
setting_type = "runtime-global",
default_value = 2,
default_value = 2,
minimum_value = 1,
maximum_value = 60, -- one stop per second
},
@@ -26,7 +26,7 @@ data:extend({
name = "ltn-dispatcher-updates-per-tick",
order = "ac",
setting_type = "runtime-global",
default_value = 1,
default_value = 1,
minimum_value = 1,
maximum_value = 100, -- processing too many stops/requests per tick will produce lag spikes
},
@@ -47,12 +47,12 @@ data:extend({
minimum_value = 0,
maximum_value = 2147483647, -- prevent 32bit signed overflow
},
{
{
type = "bool-setting",
name = "ltn-interface-debug-logfile",
order = "af",
setting_type = "runtime-global",
default_value = false
default_value = false
},
{
type = "int-setting",