From c19b8c72b7514751fd3470908fbd047e1a63862b Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 31 Aug 2007 12:45:21 +0000 Subject: (svn r11013) -Fix [FS#1171]: MoveGoodsToStation's search area is too small as it assumed a lower maximum catchment area than the real maximum catchment area. Based on a patch by PhilSophus. --- src/station.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/station.h') diff --git a/src/station.h b/src/station.h index 71abc5750..bbae591d6 100644 --- a/src/station.h +++ b/src/station.h @@ -222,7 +222,9 @@ enum CatchmentArea { CA_BUS = 3, CA_TRUCK = 3, CA_TRAIN = 4, - CA_DOCK = 5 + CA_DOCK = 5, + + MAX_CATCHMENT = 10, ///< Airports have a catchment up to this number. }; void ModifyStationRatingAround(TileIndex tile, PlayerID owner, int amount, uint radius); -- cgit v1.2.3-54-g00ecf