renamed mod

This commit is contained in:
Monica Moniot
2022-10-16 01:59:56 -04:00
parent 822c9b6a7e
commit 131e9fab15
17 changed files with 0 additions and 0 deletions

30
cybersyn/settings.lua Normal file
View File

@@ -0,0 +1,30 @@
--By cybersyn
data:extend({
{
type = "int-setting",
name = "cybersyn-ticks-per-second",
order = "aa",
setting_type = "runtime-global",
default_value = 10,
minimum_value = 1,
maximum_value = 60,
},
{
type = "int-setting",
name = "cybersyn-requester-threshold",
order = "ab",
setting_type = "runtime-global",
default_value = 1000000000,
minimum_value = 1,
maximum_value = 2147483647,
},
{
type = "int-setting",
name = "cybersyn-provider-threshold",
order = "ac",
setting_type = "runtime-global",
default_value = 1000000000,
minimum_value = 1,
maximum_value = 2147483647,
},
})