From e25f362afb9f758b1e589d99ebabe7e460f91a1a Mon Sep 17 00:00:00 2001 From: dP Date: Fri, 2 Jan 2026 04:17:58 +0500 Subject: [PATCH] Fix #48: Crash when building a station after some got removed --- src/station_gui.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/station_gui.cpp b/src/station_gui.cpp index 3d48fcf106..3177911da9 100644 --- a/src/station_gui.cpp +++ b/src/station_gui.cpp @@ -2553,6 +2553,7 @@ void ShowSelectRoadWaypointIfNeeded(TileArea ta, StationPickerCmdProc proc) namespace citymania { void ShowSelectStationWindow(TileArea ta, StationPickerCmdProc&& proc) { if (!_settings_client.gui.persistent_buildingtools) ResetObjectToPlace(); + FindStationsNearby(ta, false); new SelectStationWindow(_select_station_desc, ta, std::move(proc)); } }