nächster versuch

This commit is contained in:
Katja Zedel 2002-01-20 13:35:43 +00:00
parent 7d4f345e1e
commit 07b4d35e96
1 changed files with 3 additions and 3 deletions

View File

@ -84,7 +84,7 @@ void
age_skeleton(unit *u)
{
if (u->faction->no == 0 && rand()%100 < age_chance(u->age, 27, 1)) {
int n = (u->number+1)/2;
int n = max(1,u->number/2);
double q = (double) u->hp / (double) (unit_max_hp(u) * u->number);
u->race = new_race[RC_SKELETON_LORD];
u->irace = new_race[RC_SKELETON_LORD];
@ -97,7 +97,7 @@ void
age_zombie(unit *u)
{
if (u->faction->no == 0 && rand()%100 < age_chance(u->age, 27, 1)) {
int n = (u->number+1)/2;
int n = max(1,u->number/2);
double q = (double) u->hp / (double) (unit_max_hp(u) * u->number);
u->race = new_race[RC_ZOMBIE_LORD];
u->irace = new_race[RC_ZOMBIE_LORD];
@ -110,7 +110,7 @@ void
age_ghoul(unit *u)
{
if (u->faction->no == 0 && rand()%100 < age_chance(u->age, 27, 1)) {
int n = (u->number+1)/2;
int n = max(1,u->number/2);
double q = (double) u->hp / (double) (unit_max_hp(u) * u->number);
u->race = new_race[RC_GHOUL_LORD];
u->irace = new_race[RC_GHOUL_LORD];