forked from github/server
add a configuration option to stop peasant growths, for testing
This commit is contained in:
parent
29124b92e2
commit
6ff110ae36
|
@ -938,7 +938,9 @@ void demographics(void)
|
||||||
* und gewandert sind */
|
* und gewandert sind */
|
||||||
|
|
||||||
calculate_emigration(r);
|
calculate_emigration(r);
|
||||||
peasants(r);
|
if (get_param_int(global.parameters, "rules.peasants.growth", 1)) {
|
||||||
|
peasants(r);
|
||||||
|
}
|
||||||
if (r->age > 20) {
|
if (r->age > 20) {
|
||||||
plagues(r, false);
|
plagues(r, false);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue