More catchment area

This commit is contained in:
2024-06-09 18:12:12 +02:00
parent e8c1be6f9e
commit 4fb1a7c286

View File

@@ -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
};