forked from github/server
BUG 2503: fix undead spawn rate
This commit is contained in:
parent
297312ddb3
commit
1305edb744
1 changed files with 1 additions and 1 deletions
|
@ -938,7 +938,7 @@ void spawn_undead(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (r->land && unburied > rpeasants(r) / 20
|
if (r->land && unburied > rpeasants(r) / 20
|
||||||
&& rng_int() % 10000 < 200) {
|
&& rng_int() % 10000 < 100) {
|
||||||
message *msg;
|
message *msg;
|
||||||
unit *u;
|
unit *u;
|
||||||
/* es ist sinnfrei, wenn irgendwo im Wald 3er-Einheiten Untote entstehen.
|
/* es ist sinnfrei, wenn irgendwo im Wald 3er-Einheiten Untote entstehen.
|
||||||
|
|
Loading…
Reference in a new issue