forked from github/server
endless loop
This commit is contained in:
parent
5a2eff08be
commit
bd5aa5f04b
|
@ -235,7 +235,7 @@ setstealth_cmd(unit * u, struct order * ord)
|
|||
unit * mu = u->faction->units;
|
||||
while (mu!=NULL) {
|
||||
unit * ru = mu->region->units;
|
||||
if (mu->region==lastr) continue;
|
||||
if (mu->region!=lastr) {
|
||||
while (ru!=NULL) {
|
||||
attrib *a = a_find(ru->attribs, &at_otherfaction);
|
||||
if (a) {
|
||||
|
@ -246,6 +246,7 @@ setstealth_cmd(unit * u, struct order * ord)
|
|||
}
|
||||
if (ru!=NULL) break;
|
||||
lastr = mu->region;
|
||||
}
|
||||
mu = mu->nextF;
|
||||
}
|
||||
if (mu!=NULL) {
|
||||
|
|
Loading…
Reference in New Issue