Vanilla Development Mailing List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS update: Vanilla/robots



Date:	Monday November 1, 1999 @ 4:29
Author:	cameron

Update of /home/netrek/cvsroot/Vanilla/robots
In directory cvs.castle.real-time.com:/var/tmp/cvs-serv3654/robots

Modified Files:
	inl.c 
Log Message:
Do not deposit observers armies on home planet

****************************************

Index: Vanilla/robots/inl.c
diff -u Vanilla/robots/inl.c:1.25 Vanilla/robots/inl.c:1.26
--- Vanilla/robots/inl.c:1.25	Sat Jul 17 23:47:21 1999
+++ Vanilla/robots/inl.c	Mon Nov  1 04:29:29 1999
@@ -1,7 +1,7 @@
-/* 	$Id: inl.c,v 1.25 1999/07/18 04:47:21 cameron Exp $	 */
+/* 	$Id: inl.c,v 1.26 1999/11/01 10:29:29 cameron Exp $	 */
 
 #ifndef lint
-static char vcid[] = "$Id: inl.c,v 1.25 1999/07/18 04:47:21 cameron Exp $";
+static char vcid[] = "$Id: inl.c,v 1.26 1999/11/01 10:29:29 cameron Exp $";
 #endif /* lint */
 
 /*
@@ -1144,6 +1144,11 @@
   for (j = firstPlayer; j<=lastPlayer; j++) {
     if (j->p_status == PFREE)
       continue;
+    if (j->p_status == POBSERV) {
+      j->p_status = PEXPLODE;
+      j->p_whydead = kreason;
+      continue;
+    }
     j->p_status = PEXPLODE;
     j->p_whydead = kreason;
     if (j->p_ship.s_type == STARBASE)