(svn r12153) [NoAI] -Fix: unmodified catchment radius is 4 not 3 noai
authorglx
Fri, 15 Feb 2008 23:42:29 +0000
branchnoai
changeset 9730 cb65df290e31
parent 9729 c264c78a3567
child 9731 9b1552d0fd9b
(svn r12153) [NoAI] -Fix: unmodified catchment radius is 4 not 3
src/ai/api/ai_station.cpp
--- a/src/ai/api/ai_station.cpp	Fri Feb 15 23:36:22 2008 +0000
+++ b/src/ai/api/ai_station.cpp	Fri Feb 15 23:42:29 2008 +0000
@@ -66,7 +66,7 @@
 		DEBUG(ai, 0, "GetCoverageRadius(): coverage radius of airports needs to be requested via AIAirport::GetAirportCoverageRadius(), as it requires AirportType");
 		return 0;
 	}
-	if (!_patches.modified_catchment) return 3;
+	if (!_patches.modified_catchment) return 4;
 
 	switch (type) {
 		case STATION_TRAIN:      return CA_TRAIN;