From d758f065d533d2cdd8fd1a4bc158841cccfbb85d Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 24 Sep 2016 11:33:00 +0200 Subject: [PATCH] only use lists for lighthouses with range > 3. --- src/reports.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reports.c b/src/reports.c index be8693e95..504ab299d 100644 --- a/src/reports.c +++ b/src/reports.c @@ -1229,7 +1229,7 @@ static void prepare_lighthouse(building * b, report_context *ctx) faction *f = ctx->f; int range = lighthouse_range(b, f); - if (range > 2) { + if (range > 3) { prepare_lighthouse_ql(f, get_regions_distance(b->region, range)); } else {