diff options
author | dominik <dominik@openttd.org> | 2004-08-21 10:54:47 +0000 |
---|---|---|
committer | dominik <dominik@openttd.org> | 2004-08-21 10:54:47 +0000 |
commit | 287dcdc779bc41f728062ee3c1cd8097a9f9c7ed (patch) | |
tree | 5277b977685235a5ebad4d7d249326cfa101d3e6 | |
parent | e1d92ebcc913440a4ffcfaaba031279141da2b8f (diff) | |
download | openttd-287dcdc779bc41f728062ee3c1cd8097a9f9c7ed.tar.xz |
(svn r100) Fix: [ 1012086 ] Drunk pilot (Celestar)
-rw-r--r-- | aircraft_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aircraft_cmd.c b/aircraft_cmd.c index 15e5a7640..3814e19ce 100644 --- a/aircraft_cmd.c +++ b/aircraft_cmd.c @@ -907,8 +907,8 @@ static bool Aircraft_5(Vehicle *v) if (amd->flag & AMED_SLOWTURN) { if (v->load_unload_time_rem == 0) { v->load_unload_time_rem = 8; - v->direction = newdir; } + v->direction = newdir; } else { v->cur_speed >>= 1; v->direction = newdir; |