summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-11-11 13:04:51 +0000
committerrubidium <rubidium@openttd.org>2007-11-11 13:04:51 +0000
commit75b7ca42ae9dfaed4054eb3af5f482acb75eb9b0 (patch)
treea9d67e2e0c3bd0f2fb57ec6773f638ebd5e87164 /src
parent58e5282e384980f73c8785433d7d794af2b4c375 (diff)
downloadopenttd-75b7ca42ae9dfaed4054eb3af5f482acb75eb9b0.tar.xz
(svn r11408) -Fix [FS#1422]: do not do a 270 degree turn when 90 degrees is enough on a commuter airport.
Diffstat (limited to 'src')
-rw-r--r--src/airport_movement.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/airport_movement.h b/src/airport_movement.h
index a05c53219..7e2c1864c 100644
--- a/src/airport_movement.h
+++ b/src/airport_movement.h
@@ -72,7 +72,7 @@ static const AirportMovingData _airport_moving_data_commuter[37] = {
{ 145, 54, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 16 Fly to landing position in air
{ 73, 54, AMED_NOSPDCLAMP | AMED_LAND, {DIR_N} }, // 17 Going down for land
{ 3, 54, AMED_NOSPDCLAMP | AMED_BRAKE, {DIR_N} }, // 18 Just landed, brake until end of runway
- { 12, 54, 0, {DIR_NW} }, // 19 Just landed, turn around and taxi
+ { 12, 54, AMED_SLOWTURN, {DIR_NW} }, // 19 Just landed, turn around and taxi
{ 8, 32, 0, {DIR_NW} }, // 20 Taxi from runway to crossing
{ -31, 149, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 21 Fly around waiting for a landing spot (north-east)
{ 1, 6, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 22 Fly around waiting for a landing spot (north-west)