From 07e8547eb57242cf1a4fe73c21fc6ff1cd2b3f7a Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Tue, 29 Oct 2024 13:08:15 +0000 Subject: [PATCH] Fix: Terraform of road waypoint tiles (#13040) --- src/station_cmd.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 7d016ee4ad..4353e8010a 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -4762,7 +4762,8 @@ static CommandCost TerraformTile_Station(TileIndex tile, DoCommandFlag flags, in return CommandCost(EXPENSES_CONSTRUCTION, _price[PR_BUILD_FOUNDATION]); case STATION_TRUCK: - case STATION_BUS: { + case STATION_BUS: + case STATION_ROADWAYPOINT: { if (IsDriveThroughStopTile(tile)) { if (!AutoslopeCheckForAxis(tile, z_new, tileh_new, GetDriveThroughStopAxis(tile))) break; } else {