forked from github/server
GIB TEMP anders gefixt.
This commit is contained in:
parent
2b36ba65e0
commit
5dee77b1b6
|
@ -1543,23 +1543,17 @@ getunit(const region * r, const faction * f)
|
||||||
getunitpeasants = 0;
|
getunitpeasants = 0;
|
||||||
|
|
||||||
n = read_unitid(f, r);
|
n = read_unitid(f, r);
|
||||||
|
|
||||||
if (n == 0) {
|
if (n == 0) {
|
||||||
getunitpeasants = 1;
|
getunitpeasants = 1;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (n < 0) return 0;
|
if (n < 0) return 0;
|
||||||
|
|
||||||
return findunitr(r, n);
|
|
||||||
|
|
||||||
/* && u2->number>0 verhindert GIB TEMP u.ä.!
|
|
||||||
for (u2 = r->units; u2; u2 = u2->next) {
|
for (u2 = r->units; u2; u2 = u2->next) {
|
||||||
if (u2->no == n && u2->number>0) {
|
if (u2->no == n) {
|
||||||
return u2;
|
if ((u2->flags & UFL_ISNEW) || u2->number>0) return u2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue