"Übergabe an TEMP hat nicht geklappt"

Keine GIB ausfuehren, wenn die Einheit 0 Personen hat.
This commit is contained in:
Enno Rehling 2007-02-11 11:10:53 +00:00
parent eedb4e1ae9
commit 51f0aacb96
1 changed files with 5 additions and 3 deletions

View File

@ -1067,6 +1067,7 @@ economics(region *r)
for (u = r->units; u; u = u->next) {
order * ord;
boolean destroyed = false;
if (u->number>0) {
for (ord = u->orders; ord; ord = ord->next) {
switch (get_keyword(ord)) {
case K_DESTROY:
@ -1089,6 +1090,7 @@ economics(region *r)
if (u->orders==NULL) break;
}
}
}
/* RECRUIT orders */
for (u = r->units; u; u = u->next) {