Autolabor: allow multiple simultaneous jobs at farms.

develop
Kelly Martin 2012-12-03 14:20:57 -06:00
parent 208b9915ea
commit 287ee2bc04
1 changed files with 2 additions and 1 deletions

@ -1574,7 +1574,8 @@ private:
break;
}
// check if this job is the first nonsuspended job on this building; if not, ignore it
if (fjid != j->id) {
// (except for farms)
if (fjid != j->id && b->getType() != df::building_type::FarmPlot) {
continue;
}