forked from github/server
if a unit is empty, and not a TEMP, then it is dead and cannot recruit.
This fixes http://bugs.eressea.de/view.php?id=2010
This commit is contained in:
parent
9e2e7bfe97
commit
4d173cf7e2
|
@ -372,6 +372,11 @@ static int do_recruiting(recruitment * recruits, int available)
|
|||
use_pooled(u, get_resourcetype(R_SILVER), GET_DEFAULT,
|
||||
rc->recruitcost * number);
|
||||
}
|
||||
if (u->number == 0 && !fval(u, UFL_ISNEW)) {
|
||||
/* unit is empty, and not a TEMP => it is dead, and cannot recruit */
|
||||
number = 0;
|
||||
}
|
||||
if (number > 0) {
|
||||
add_recruits(u, number, req->qty);
|
||||
dec = (int)(number * multi);
|
||||
if ((rc->ec_flags & ECF_REC_ETHEREAL) == 0) {
|
||||
|
@ -381,6 +386,7 @@ static int do_recruiting(recruitment * recruits, int available)
|
|||
get -= dec;
|
||||
}
|
||||
}
|
||||
}
|
||||
return recruited;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue