# HG changeset patch # User smatz # Date 1202733769 0 # Node ID 5d05519d1c501ef8c94e189ea9c4c6f854fa2771 # Parent 921045950febd5a564888d332f04cda26d76dc7c (svn r12109) -Fix [FS#1745](r8973): use tile index 0 for planes in the air, so it cannot have an invalid tile index diff -r 921045950feb -r 5d05519d1c50 src/aircraft_cmd.cpp --- 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;