The thing is that even if I exposed the settings it would not matter really as the way I overwrite the settings is by defining a single valid value otherwise if you had Transport drones installed before without this mod it can keep your modified values. Essentially it would only let you chose the setting its currently at. You could just go, unzip my mod and change the values in the settings.lua
for your desired effect. I marked the values you need to change below. All you need is a text editor.
data.raw["string-setting"]["fuel-fluid"] = nil
data.raw["double-setting"]["fuel-amount-per-drone"] = nil
data.raw["double-setting"]["fuel-consumption-per-meter"] = nil
data:extend({
{
type = "double-setting",
name = "fuel-consumption-per-meter",
localised_name = "Fuel consumption per meter",
setting_type = "startup",
default_value = 0.1, # lower this and the next two for more range
minimum_value = 0.09999999,
maximum_value = 0.1,
hidden = true
},
{
type = "double-setting",
name = "fuel-amount-per-drone",
localised_name = "Transport drone fuel per drone",
setting_type = "startup",
default_value = 100, # increase this and the next two for more range
minimum_value = 99.99999999,
maximum_value = 100,
hidden = true
},
{
type = "string-setting",
name = "fuel-fluid",
localised_name = "Transport drone fuel",
setting_type = "startup",
default_value = "steam",
hidden = true
}
})