]> git.pond.sub.org Git - empserver/commitdiff
Fix RES_POP maximum population formula.
authorMarkus Armbruster <armbru@pond.sub.org>
Sat, 20 Mar 2004 21:23:26 +0000 (21:23 +0000)
committerMarkus Armbruster <armbru@pond.sub.org>
Sat, 20 Mar 2004 21:23:26 +0000 (21:23 +0000)
info/Concepts/Research.t

index 4a11752142b53b4913bf6dc464800dd3dc387c64..64acab1bbaa8c7f275203212f22f655b5818d722 100644 (file)
@@ -6,10 +6,10 @@
 If the RES_POP option is in use, 
 the research level of a country determines the maximum number of civilians,
 mil, and uw's
-that can live in a sector. The maximum then is:
+that can live in a sector. For ordinary sectors, the maximum is:
 .s1
 .ti 3
-400 + 600 * ((research*4 + 50)/(research*3 + 200))
+min(999, 400 + 600 * ((research*4 + 50)/(research*3 + 200)))
 .s1
 So, for example, at 0 research, after an update, the max you
 could have in a sector would be 550 civs, 550 uws, and 550 mil.