Update of /cvsroot/netrek/client/netrekxp/src
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv20903/src

Modified Files:
	local.c 
Log Message:
Apparently tractor flag is not cleared properly sometimes, so will
have to go by pressor flag to determine color.  Note that both
dashboard and tractor line drawing always check pressor flag
first, must be a longstanding issue.  Monitoring player's flag showed
that sometimes a pressoring ship is flagged as both PFTRACT and
PFPRESS, but a tractoring ship is only flagged as PFTRACT.

Index: local.c
===================================================================
RCS file: /cvsroot/netrek/client/netrekxp/src/local.c,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -d -r1.72 -r1.73
--- local.c	15 Mar 2007 16:59:49 -0000	1.72
+++ local.c	15 Mar 2007 17:45:42 -0000	1.73
@@ -1303,7 +1303,7 @@
                         buflen = 1;
                         W_MaskText (w, dx - (j->p_ship.s_width / 2),
                                     dy + (j->p_ship.s_height / 2),
-                                    (j->p_flags & PFTRACT) ? gColor : yColor,
+                                    (j->p_flags & PFPRESS) ? yColor : gColor,
                                     idbuf, buflen, shipFont (j));
                         clearzone[0][clearcount] = dx - (j->p_ship.s_width / 2);
                         clearzone[1][clearcount] = dy + (j->p_ship.s_height / 2);