(prod): All sectors produce when efficiency >=60%, not only enlistment

centers.
This commit is contained in:
Markus Armbruster 2005-04-04 18:54:14 +00:00
parent 953e5f6dc7
commit 44d59b5d17

View file

@ -176,7 +176,7 @@ prod(void)
eff += twork;
}
work = (work + 1) / 2 + bwork;
if (eff < 60 || (type != SCT_ENLIST && eff < 61))
if (eff < 60)
continue;
p_e = eff / 100.0;