diff options
author | smatz <smatz@openttd.org> | 2008-02-11 12:42:49 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2008-02-11 12:42:49 +0000 |
commit | 1011ac353b30d33945c5e5ad5f3d52186c829afc (patch) | |
tree | 38b939859a2e2ff66a3b25914936836ddbf0c297 /src | |
parent | fb6accfcb754d7d703c774d7f72d9ea8760a35e8 (diff) | |
download | openttd-1011ac353b30d33945c5e5ad5f3d52186c829afc.tar.xz |
(svn r12109) -Fix [FS#1745](r8973): use tile index 0 for planes in the air, so it cannot have an invalid tile index
Diffstat (limited to 'src')
-rw-r--r-- | src/aircraft_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aircraft_cmd.cpp b/src/aircraft_cmd.cpp index 7df232fae..cdad840ab 100644 --- a/src/aircraft_cmd.cpp +++ b/src/aircraft_cmd.cpp @@ -1194,7 +1194,7 @@ static bool AircraftController(Vehicle *v) v->tile = gp.new_tile; /* If vehicle is in the air, use tile coordinate 0. */ - // if (amd->flag & (AMED_TAKEOFF | AMED_SLOWTURN | AMED_LAND)) v->tile = 0; + if (amd->flag & (AMED_TAKEOFF | AMED_SLOWTURN | AMED_LAND)) v->tile = 0; /* Adjust Z for land or takeoff? */ uint z = v->z_pos; |