I would like to request that you add Stone, Copper and Iron to the resourceBlacklist if Angelsmods are enabled, please. Otherwise, maybe an option to disable those 3 from being in the quarry options. Thank you much.
I had to remove the local from it, but here's the quick and dirty version.
-- list of resources unavailable in quarries
if angelsmods then
resourceBlacklist = {
["ground-water"] = true, -- bob's groundwater
["copper-ore"] = true,
["iron-ore"] = true,
["stone"] = true
}
else
resourceBlacklist = {
["ground-water"] = true, -- bob's groundwater
}
end