[nexuiz-commits] r6446 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Apr 6 09:51:54 EDT 2009


Author: div0
Date: 2009-04-06 09:51:54 -0400 (Mon, 06 Apr 2009)
New Revision: 6446

Modified:
   trunk/data/qcsrc/server/bots.qc
Log:
show waypoint links message only on console


Modified: trunk/data/qcsrc/server/bots.qc
===================================================================
--- trunk/data/qcsrc/server/bots.qc	2009-04-06 13:24:05 UTC (rev 6445)
+++ trunk/data/qcsrc/server/bots.qc	2009-04-06 13:51:54 UTC (rev 6446)
@@ -953,9 +953,9 @@
 	file = fopen(filename, FILE_WRITE);
 	if (file < 0)
 	{
-		bprint("waypoint links save to ");
-		bprint(filename);
-		bprint(" failed\n");
+		print("waypoint links save to ");
+		print(filename);
+		print(" failed\n");
 	}
 	c = 0;
 	w = findchain(classname, "waypoint");
@@ -1013,11 +1013,11 @@
 	fclose(file);
 	botframe_cachedwaypointlinks = TRUE;
 
-	bprint("saved ");
-	bprint(ftos(c));
-	bprint(" waypoints links to maps/");
-	bprint(mapname);
-	bprint(".waypoints.cache\n");
+	print("saved ");
+	print(ftos(c));
+	print(" waypoints links to maps/");
+	print(mapname);
+	print(".waypoints.cache\n");
 };
 
 // save waypoints to gamedir/data/maps/mapname.waypoints



More information about the nexuiz-commits mailing list