diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 1a188252ce..3a7114d9f4 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -1949,10 +1949,10 @@ CommandCost CmdBuildRoadStop(TileIndex tile, DoCommandFlag flags, uint32 p1, uin MarkTileDirtyByTile(cur_tile); } - } - if (st != nullptr) { - st->AfterStationTileSetChange(true, type ? STATION_TRUCK: STATION_BUS); + if (st != nullptr) { + st->AfterStationTileSetChange(true, type ? STATION_TRUCK: STATION_BUS); + } } return cost; }