From 3dc12e3d65963c52be18a502201ed9c29ce50c0a Mon Sep 17 00:00:00 2001 From: Koen Bussemaker Date: Sun, 26 Jan 2025 14:48:01 +0100 Subject: [PATCH] Change: Don't distinguish between bus and truck stops when removing them --- src/station_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index f65906ce90..5039739a27 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -2323,7 +2323,7 @@ static CommandCost RemoveGenericRoadStop(DoCommandFlag flags, const TileArea &ro for (TileIndex cur_tile : roadstop_area) { /* Make sure the specified tile is a road stop of the correct type */ - if (!IsTileType(cur_tile, MP_STATION) || !IsAnyRoadStop(cur_tile) || GetStationType(cur_tile) != station_type) continue; + if (!IsTileType(cur_tile, MP_STATION) || !IsAnyRoadStop(cur_tile)) continue; /* Save information on to-be-restored roads before the stop is removed. */ RoadBits road_bits = ROAD_NONE;