allow some choice of mining fluid

This commit is contained in:
Brevven 2020-09-21 00:11:53 -07:00
parent 2229c44448
commit 9a9641b85c
6 changed files with 47 additions and 2 deletions

11
settings.lua Normal file
View file

@ -0,0 +1,11 @@
data:extend(
{
{
type = "string-setting",
name = "bztitanium-mining-fluid",
setting_type = "startup",
default_value = "lubricant",
allowed_values = (mods["Krastorio2"] and {"lubricant", "sulfuric-acid", "chlorine"} or {"lubricant", "sulfuric-acid"}),
order = "a1",
},
})