diff options
author | rubidium <rubidium@openttd.org> | 2007-06-17 19:46:01 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-06-17 19:46:01 +0000 |
commit | 6d9393cb60957b0bd5ba5ca5837d28986d0c4dbb (patch) | |
tree | 50be3fcb078a611561599ae0b77044465eb8d1f4 /src | |
parent | 22257f46c27e18e1123c3cf7f7a315166cc4ec80 (diff) | |
download | openttd-6d9393cb60957b0bd5ba5ca5837d28986d0c4dbb.tar.xz |
(svn r10187) -Fix: don't do a 270 degree turn on the international airport when a 90 degree turn is enough.
Diffstat (limited to 'src')
-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 5d144af21..a05c53219 100644 --- a/src/airport_movement.h +++ b/src/airport_movement.h @@ -195,7 +195,7 @@ static const AirportMovingData _airport_moving_data_international[51] = { { 193, 104, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 32 Fly to landing position in air { 105, 104, AMED_NOSPDCLAMP | AMED_LAND, {DIR_N} }, // 33 Going down for land { 3, 104, AMED_NOSPDCLAMP | AMED_BRAKE, {DIR_N} }, // 34 Just landed, brake until end of runway - { 12, 104, 0, {DIR_N} }, // 35 Just landed, turn around and taxi 1 square + { 12, 104, AMED_SLOWTURN, {DIR_N} }, // 35 Just landed, turn around and taxi 1 square { 7, 84, 0, {DIR_N} }, // 36 Taxi from runway to crossing { -31, 209, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 37 Fly around waiting for a landing spot (north-east) { 1, 6, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 38 Fly around waiting for a landing spot (north-west) |