forked from github/server
Lighthouse shows roads in both CR and NR.
This closes bug 2669.
This commit is contained in:
parent
0ea9717b5a
commit
515fcb3c86
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue