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

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sat Sep 26 11:56:33 EDT 2009


Author: div0
Date: 2009-09-26 11:56:33 -0400 (Sat, 26 Sep 2009)
New Revision: 7931

Modified:
   trunk/data/qcsrc/server/cl_player.qc
Log:
another typo


Modified: trunk/data/qcsrc/server/cl_player.qc
===================================================================
--- trunk/data/qcsrc/server/cl_player.qc	2009-09-26 15:34:02 UTC (rev 7930)
+++ trunk/data/qcsrc/server/cl_player.qc	2009-09-26 15:56:33 UTC (rev 7931)
@@ -32,7 +32,7 @@
 					idx = WEAPONSTATS_GETINDEX(i, j);
 					f = stov(bufstr_get(weaponstats_buffer, idx)) * '0 1 0';
 					if(f != 0)
-						fputs(fh, strcat(prefix, "\t", ftos(i), "\t", ftos(j), "\t", ftos(f), "\n"));
+						fputs(fh, strcat(prefix, ftos(i), "\t", ftos(j), "\t", ftos(f), "\n"));
 				}
 			fputs(fh, "#end\n\n");
 			fclose(fh);
@@ -53,7 +53,7 @@
 					idx = WEAPONSTATS_GETINDEX(i, j);
 					f = stov(bufstr_get(weaponstats_buffer, idx)) * '1 0 0';
 					if(f != 0)
-						fputs(fh, strcat(prefix, "\t", ftos(i), "\t", ftos(j), "\t", ftos(f), "\n"));
+						fputs(fh, strcat(prefix, ftos(i), "\t", ftos(j), "\t", ftos(f), "\n"));
 				}
 			fputs(fh, "#end\n\n");
 			fclose(fh);



More information about the nexuiz-commits mailing list