diff options
author | yexo <yexo@openttd.org> | 2009-09-08 23:05:28 +0000 |
---|---|---|
committer | yexo <yexo@openttd.org> | 2009-09-08 23:05:28 +0000 |
commit | 4924e4ffba7a956641272e2408f27cfb5b023d2a (patch) | |
tree | a12192c18610f55ea0c6312dda0483412c4ecd52 | |
parent | b615ae70153454e2e353d9bf5aac0dfe7d251018 (diff) | |
download | openttd-4924e4ffba7a956641272e2408f27cfb5b023d2a.tar.xz |
(svn r17482) -Fix (r17405): helicopters were not able to land anymore on the intercontinental airport
-rw-r--r-- | src/airport_movement.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/airport_movement.h b/src/airport_movement.h index 2ce300312..73e214380 100644 --- a/src/airport_movement.h +++ b/src/airport_movement.h @@ -271,8 +271,8 @@ static const AirportMovingData _airport_moving_data_intercontinental[77] = { { 56, -168, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 45 Fly around waiting for a landing spot (south-west) { 312, 88, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 46 Fly around waiting for a landing spot (south) /* Helicopter */ - { 96, 40, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 47 Bufferspace before helipad - { 96, 40, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 48 Bufferspace before helipad + { 96, 40, AMED_NOSPDCLAMP, {DIR_N} }, // 47 Bufferspace before helipad + { 96, 40, AMED_NOSPDCLAMP, {DIR_N} }, // 48 Bufferspace before helipad { 82, 54, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 49 Get in position for Helipad1 { 64, 56, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 50 Get in position for Helipad2 { 81, 55, AMED_HELI_LOWER, {DIR_N} }, // 51 Land at Helipad1 |