#Biters Nest on Resources
1 messages · Page 1 of 1 (latest)
Does it also have nests that aren't on resource patches?
Biters Nest on Resources
When the biters expand and create new bases, do ore patches and oil fields spawn underneath them?
Yes, I haven't changed that, but you can tune down sliders during mapgen
Biters creating resources is my other mod - https://mods.factorio.com/mod/resourceful_biters
that's when enemies die, not when enemies expand
You should probably add an option to disable regular enemy base spawn
I will need to look into how to do this later
--unit-spawner
for _,entity in pairs(data.raw["unit-spawner"]) do
if entity and entity.name ~= "gleba-spawner" and entity.name ~= "gleba-spawner-small" then
entity.autoplace = nil
end
end
--worms
for _,entity in pairs(data.raw["turret"]) do
if entity then
entity.autoplace = nil
end
end```