(svn r12109) -Fix [FS#1745](r8973): use tile index 0 for planes in the air, so it cannot have an invalid tile index
--- a/src/aircraft_cmd.cpp Mon Feb 11 11:21:29 2008 +0000
+++ b/src/aircraft_cmd.cpp Mon Feb 11 12:42:49 2008 +0000
@@ -1194,7 +1194,7 @@
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;