Limit BTU production to 1000 civilians instead of 999

This makes the limit again equal maximum population of a capital
sector, which changed in commit 6bbd7ffd, v4.3.6.
This commit is contained in:
Markus Armbruster 2008-06-15 08:48:22 +02:00
parent 4a67080656
commit 85bb88c26c
2 changed files with 3 additions and 3 deletions

View file

@ -64,8 +64,8 @@ accrued_btus(struct sctstr *cap, int etu)
eff = 0.5;
civ = cap->sct_item[I_CIVIL];
if (civ > 999)
civ = 999;
if (civ > 1000)
civ = 1000;
return roundavg(etu * civ * eff * btu_build_rate);
}