This commit is contained in:
Brevven 2022-06-28 03:31:07 -07:00
commit 780d3f2d3d
83 changed files with 1805 additions and 0 deletions

22
settings.lua Normal file
View file

@ -0,0 +1,22 @@
data:extend({
{
type = "string-setting",
name = "bztin-recipe-bypass",
setting_type = "startup",
default_value = "",
allow_blank = true,
},
{
type = "bool-setting",
name = "bztin-list",
setting_type = "startup",
default_value = false,
},
{
type = "string-setting",
name = "bztin-more-intermediates",
setting_type = "startup",
default_value = (mods.Krastorio2 or mods["space-exploration"]) and "cable" or "no",
allowed_values = {"cable", "no"},
},
})