diff options
author | yexo <yexo@openttd.org> | 2009-08-31 22:15:29 +0000 |
---|---|---|
committer | yexo <yexo@openttd.org> | 2009-08-31 22:15:29 +0000 |
commit | 13d41d43b1d6bee6f3bceecd6cb07c44efbeac9c (patch) | |
tree | ec53577452d3c906bc8731643107b22f050aa2ea | |
parent | d938896691164bd7d06c79c2943e4368ae321af5 (diff) | |
download | openttd-13d41d43b1d6bee6f3bceecd6cb07c44efbeac9c.tar.xz |
(svn r17334) -Fix: don't turn north just before approaching the landing strip of the small airport
-rw-r--r-- | src/airport_movement.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/airport_movement.h b/src/airport_movement.h index 8eb63d907..0e0c1e10f 100644 --- a/src/airport_movement.h +++ b/src/airport_movement.h @@ -52,7 +52,7 @@ static const AirportMovingData _airport_moving_data_country[22] = { { -31, 193, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 15 Fly around waiting for a landing spot (north-east) { 1, 1, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 16 Fly around waiting for a landing spot (north-west) { 257, 1, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 17 Fly around waiting for a landing spot (south-west) - { 273, 49, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 18 Fly around waiting for a landing spot (south) + { 273, 47, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 18 Fly around waiting for a landing spot (south) { 44, 37, AMED_HELI_RAISE, {DIR_N} }, // 19 Helicopter takeoff { 44, 40, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 20 In position above landing spot helicopter { 44, 40, AMED_HELI_LOWER, {DIR_N} }, // 21 Helicopter landing |