Well, I can hardcode minimum city population.
Better way will be to fix stadt_t::step_bau. But I really don't understand how it should work.
Edit: City hall counts as 4 buildings? Can it be source of problem?
Edit: Most likely it is.
From besch/writer/building_writer.cc:
} else if (!STRICMP(type_name, "tow")) {
besch.level = obj.get_int("p****engers", besch.level);
besch.extra_data = obj.get_int("build_time", 0);
From simcity.h(stadt_t::baue_gebaeude)
if (h == NULL && sum_wohnung > sum_industrie && sum_wohnung > sum_gewerbe) {
h = hausbauer_t::get_wohnhaus(0, current_month, cl, new_town);
if (h != NULL) {
// will be aligned next to a street
won += h->get_level() * 10; // woh -- amount with homes
}
}
So, from simutrans point of view, people live in city hall.