diff --git a/src/common/gamecode/creport.c b/src/common/gamecode/creport.c index 4f2f82a41..7ff08f7bd 100644 --- a/src/common/gamecode/creport.c +++ b/src/common/gamecode/creport.c @@ -728,13 +728,7 @@ cr_output_unit(FILE * F, const region * r, order * ord; const char *c; int i; - const attrib * a; - a = a_find(u->attribs, &at_follow); - if (a) { - unit * u = (unit*)a->data.v; - if (u) fprintf(F, "%d;folgt\n", u->no); - } i = ualias(u); if (i>0) fprintf(F, "%d;temp\n", i); diff --git a/src/common/kernel/reports.c b/src/common/kernel/reports.c index 57e60e419..eadb980a8 100644 --- a/src/common/kernel/reports.c +++ b/src/common/kernel/reports.c @@ -429,22 +429,6 @@ bufunit(const faction * f, const unit * u, int indent, int mode) bufp += rsize; } - if (u->faction==f || telepath_see) { - attrib * a = a_find(u->attribs, &at_follow); - if (a) { - unit * uf = (unit*)a->data.v; - if (uf) { - rsize = strlcpy(bufp, ", folgt ", size); - if (rsize>size) rsize = size-1; - size -= rsize; - bufp += rsize; - rsize = strlcpy(bufp, itoa36(uf->no), size); - if (rsize>size) rsize = size-1; - size -= rsize; - bufp += rsize; - } - } - } if ((b = usiege(u))!=NULL) { rsize = strlcpy(bufp, ", belagert ", size); if (rsize>size) rsize = size-1;