From 64e29418137bb182d7d10fc0271cb11d0e11bce6 Mon Sep 17 00:00:00 2001 From: dP Date: Mon, 29 Jan 2024 15:58:03 +0530 Subject: [PATCH] Fix: Don't stop growth attempt if house is not allowed --- src/town_cmd.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp index b68e61c476..f8cdd937da 100644 --- a/src/town_cmd.cpp +++ b/src/town_cmd.cpp @@ -1593,8 +1593,6 @@ static void GrowTownInTile(TileIndex *tile_ptr, RoadBits cur_rb, DiagDirection t } if (!TownCanGrowRoad(tile)) return; - - _grow_town_result = GROWTH_SEARCH_STOPPED; } /* Return if a water tile */