diff --git a/src/station_type.h b/src/station_type.h index 9af8820e4f..020b751b1e 100644 --- a/src/station_type.h +++ b/src/station_type.h @@ -78,12 +78,12 @@ DECLARE_ENUM_AS_BIT_SET(StationHadVehicleOfType) /** The different catchment areas used */ enum CatchmentArea { CA_NONE = 0, ///< Catchment when the station has no facilities - CA_BUS = 3, ///< Catchment for bus stops with "modified catchment" enabled - CA_TRUCK = 3, ///< Catchment for truck stops with "modified catchment" enabled - CA_TRAIN = 4, ///< Catchment for train stations with "modified catchment" enabled - CA_DOCK = 5, ///< Catchment for docks with "modified catchment" enabled + CA_BUS = 6, ///< Catchment for bus stops with "modified catchment" enabled + CA_TRUCK = 6, ///< Catchment for truck stops with "modified catchment" enabled + CA_TRAIN = 8, ///< Catchment for train stations with "modified catchment" enabled + CA_DOCK = 10, ///< Catchment for docks with "modified catchment" enabled - CA_UNMODIFIED = 4, ///< Catchment for all stations with "modified catchment" disabled + CA_UNMODIFIED = 8, ///< Catchment for all stations with "modified catchment" disabled MAX_CATCHMENT = 10, ///< Maximum catchment for airports with "modified catchment" enabled };