Reducing the amount of undeads rising for very young regions.

This commit is contained in:
Enno Rehling 2005-07-10 00:44:41 +00:00
parent 17a6be3d0f
commit d72fbffb1d
1 changed files with 1 additions and 0 deletions

View File

@ -1450,6 +1450,7 @@ randomevents(void)
int undead = unburied / (rand() % 2 + 1);
const race * rc = NULL;
int i;
if (r->age<100) undead = undead * 100 / r->age; /* newbie-regionen kriegen weniger ab */
if (!undead || r->age < 20) continue;