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

CVS update: Vanilla/robots



Date:	Saturday July 17, 1999 @ 23:47
Author:	cameron

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

Modified Files:
	inl.c 
Log Message:
	* robots/inl.c (start_countdown): change team advice message to be
	two lines instead of one, [VANILLA-LIST:2528]


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

Index: Vanilla/robots/inl.c
diff -u Vanilla/robots/inl.c:1.24 Vanilla/robots/inl.c:1.25
--- Vanilla/robots/inl.c:1.24	Wed Jul 14 20:01:37 1999
+++ Vanilla/robots/inl.c	Sat Jul 17 23:47:21 1999
@@ -1,7 +1,7 @@
-/* 	$Id: inl.c,v 1.24 1999/07/15 01:01:37 unbelver Exp $	 */
+/* 	$Id: inl.c,v 1.25 1999/07/18 04:47:21 cameron Exp $	 */
 
 #ifndef lint
-static char vcid[] = "$Id: inl.c,v 1.24 1999/07/15 01:01:37 unbelver Exp $";
+static char vcid[] = "$Id: inl.c,v 1.25 1999/07/18 04:47:21 cameron Exp $";
 #endif /* lint */
 
 /*
@@ -1028,10 +1028,11 @@
 
   obliterate(2, KPROVIDENCE);
 
-  pmessage(0, MALL, inl_from, "Teams are   %s (%s): %s,   %s (%s): %s",
+  pmessage(0, MALL, inl_from, "Home team is   %s (%s): %s",
 	   inl_teams[HOME].t_name,
 	   inl_teams[HOME].name,
-	   sides[inl_teams[HOME].side_index].name,
+	   sides[inl_teams[HOME].side_index].name);
+  pmessage(0, MALL, inl_from, "Away team is   %s (%s): %s",
 	   inl_teams[AWAY].t_name,
 	   inl_teams[AWAY].name,
 	   sides[inl_teams[AWAY].side_index].name);