forked from github/server
Keine Burgen oder Schiffe in Land-Turmregionen zeigen.
This commit is contained in:
parent
e5c4bd5013
commit
b4867e4679
|
@ -1503,6 +1503,7 @@ static void cr_output_region(FILE * F, report_context * ctx, region * r)
|
|||
cr_output_messages(F, mlist, f);
|
||||
}
|
||||
}
|
||||
if (r->seen.mode >= seen_lighthouse) {
|
||||
/* buildings */
|
||||
for (b = rbuildings(r); b; b = b->next) {
|
||||
int fno = -1;
|
||||
|
@ -1525,7 +1526,6 @@ static void cr_output_region(FILE * F, report_context * ctx, region * r)
|
|||
|
||||
cr_output_ship_compat(F, sh, u, fno, f, r);
|
||||
}
|
||||
|
||||
/* visible units */
|
||||
for (u = r->units; u; u = u->next) {
|
||||
if (visible_unit(u, f, stealthmod, r->seen.mode)) {
|
||||
|
@ -1534,6 +1534,7 @@ static void cr_output_region(FILE * F, report_context * ctx, region * r)
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void report_itemtype(FILE *F, faction *f, const item_type *itype) {
|
||||
const char *ch;
|
||||
|
|
Loading…
Reference in New Issue