forked from github/server
Endlosschleife in BETRETE
This commit is contained in:
parent
d2cc7bde69
commit
e0d6bb410e
|
@ -1208,7 +1208,10 @@ void do_enter(struct region *r, bool is_final_attempt)
|
||||||
unit *u = *uptr;
|
unit *u = *uptr;
|
||||||
order **ordp = &u->orders;
|
order **ordp = &u->orders;
|
||||||
|
|
||||||
if (is_paused(u->faction)) continue;
|
if (is_paused(u->faction)) {
|
||||||
|
uptr = &u->next;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
while (*ordp) {
|
while (*ordp) {
|
||||||
order *ord = *ordp;
|
order *ord = *ordp;
|
||||||
|
|
Loading…
Reference in New Issue