Lighthouse shows roads in both CR and NR.

This closes bug 2669.
This commit is contained in:
Enno Rehling 2020-06-27 16:33:20 +02:00
parent 0ea9717b5a
commit 515fcb3c86
2 changed files with 1 additions and 5 deletions

View File

@ -1132,10 +1132,6 @@ cr_borders(const region * r, const faction * f, seen_mode mode, FILE * F)
const connection *b;
if (!r2)
continue;
if (mode == seen_neighbour) {
if (r2->seen.mode <= seen_neighbour)
continue;
}
b = get_borders(r, r2);
while (b) {
bool cs = b->type->fvisible(b, f, r);

View File

@ -1155,7 +1155,7 @@ void report_region(struct stream *out, const region * r, faction * f)
if (r->seen.mode >= seen_unit) {
report_region_schemes(out, r, f);
}
if (r->seen.mode >= seen_lighthouse) {
if (r->seen.mode >= seen_lighthouse_land) {
report_region_edges(out, r, f, edges, ne);
}
}