From ac6b01b13488e674f7df2f4458e4fa255649b0fe Mon Sep 17 00:00:00 2001 From: Alina Lenk Date: Sat, 11 May 2024 23:42:56 +0200 Subject: [PATCH 4/4] Check whether border should be cleared when reclaiming land from ocean See RM #590 Signed-off-by: Alina Lenk --- server/maphand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/maphand.c b/server/maphand.c index 707e423c5c..abfc4c365c 100644 --- a/server/maphand.c +++ b/server/maphand.c @@ -2060,7 +2060,7 @@ void check_terrain_change(struct tile *ptile, struct terrain *oldter) } claimer = tile_claimer(ptile); - if (claimer != NULL && is_ocean_tile(ptile)) { + if (claimer != NULL) { if (!is_tile_claimable(ptile, claimer, tile_owner(ptile))) { map_clear_border(ptile); } -- 2.34.1