# HG changeset patch # User richk # Date 1173135643 0 # Node ID ef1f2af9881ba75c9c8e18cb403432fa108efa6b # Parent 772567675577fa8319bb9ce098bc31554c50933b (svn r9022) -Fix [FS#660]: Airport state machine fails if the adjustment in position is less than 4 pixels. The new planespeed movement made this a fatal error on the oilrig. This fix just corrects the oilrig movement orders so that the error does not occur. Full solution is to allow minor corrections without changing the facing of the aircraft. (spotted by ledow) diff -r 772567675577 -r ef1f2af9881b src/airport_movement.h --- a/src/airport_movement.h Mon Mar 05 20:00:43 2007 +0000 +++ b/src/airport_movement.h Mon Mar 05 23:00:43 2007 +0000 @@ -371,7 +371,7 @@ { -31, 69, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 5 - circle #1 (north-east) { -31, -49, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 6 - circle #2 (north-west) { 69, -49, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 7 - circle #3 (south-west) - { 70, 9, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 8 - circle #4 (south) + { 69, 9, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 8 - circle #4 (south) }; ///////////////////////////////////////////////////////////////////////