Re: City limit and factory
Reply #2 –
It depends on the distance between cityhall and factory.
So, it never change by city growth.
/* add workers to factory list */
void stadt_t::add_factory_arbeiterziel(fabrik_t* fab)
{
const koord k = fab->get_pos().get_2d() - pos;
// worker do not travel more than 50 tiles
if( (k.x*k.x) + (k.y*k.y) < 5000 ) {
IIRC, in very old versions, this distance was recalculated when cityhall was moved to different place. But in recent versions, I guess this recalculation never happen.