Index: server/gotohand.c =================================================================== RCS file: /home/freeciv/CVS/freeciv/server/gotohand.c,v retrieving revision 1.149 diff -u -r1.149 gotohand.c --- server/gotohand.c 2002/08/25 13:34:58 1.149 +++ server/gotohand.c 2002/09/03 18:28:34 @@ -776,7 +776,7 @@ /* Planes could run out of fuel, therefore we don't care if territory is unknown. Also, don't attack except at the destination. */ - if (x1 != dest_x && y1 != dest_y) { + if (x1 != dest_x || y1 != dest_y) { /* If it's not our destination, we check if it's safe */ if (!airspace_looks_safe(x1, y1, pplayer)) { continue;