r5039 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Wed Nov 12 07:29:03 EST 2008


Author: div0
Date: 2008-11-12 07:29:03 -0500 (Wed, 12 Nov 2008)
New Revision: 5039

Modified:
   trunk/data/qcsrc/client/Main.qc
Log:
oops, accidentally committed


Modified: trunk/data/qcsrc/client/Main.qc
===================================================================
--- trunk/data/qcsrc/client/Main.qc	2008-11-12 07:10:03 UTC (rev 5038)
+++ trunk/data/qcsrc/client/Main.qc	2008-11-12 12:29:03 UTC (rev 5039)
@@ -580,23 +580,9 @@
 		precache_pic("gfx/sb_key_carrying_outline");
 	}
 }
-
-void Net_FileInfo(float challenge, string fn)
-{
-	if(fn == "<")
-		FileInfo_Init();
-	else if(fn == ">")
-		localcmd(strcat("\ncmd fileinfo ", ftos(FileInfo_Value), "\n"));
-	else
-		FileInfo_Add(challenge, fn);
-}
-
 // CSQC_Parse_StuffCmd : Provides the stuffcmd string in the first parameter that the server provided.  To execute standard behavior, simply execute localcmd with the string.
 void CSQC_Parse_StuffCmd(string strMessage)
 {
-	tokenizebyseparator(strMessage, " ");
-	if(argv(0) == "\n//fileinfo")
-		Net_FileInfo(stof(argv(1)), argv(2));
 	localcmd(strMessage);
 }
 // CSQC_Parse_Print : Provides the print string in the first parameter that the server provided.  To execute standard behavior, simply execute print with the string.




More information about the nexuiz-commits mailing list