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

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Wed Jun 10 19:27:33 EDT 2009


Author: mand1nga
Date: 2009-06-10 19:27:33 -0400 (Wed, 10 Jun 2009)
New Revision: 6971

Modified:
   trunk/data/qcsrc/server/bots_scripting.qc
Log:
Use SV_ParseClientCommand instead of clientcommand

Modified: trunk/data/qcsrc/server/bots_scripting.qc
===================================================================
--- trunk/data/qcsrc/server/bots_scripting.qc	2009-06-10 23:12:38 UTC (rev 6970)
+++ trunk/data/qcsrc/server/bots_scripting.qc	2009-06-10 23:27:33 UTC (rev 6971)
@@ -422,9 +422,10 @@
 #define CMD_STATUS_FINISHED	1
 #define CMD_STATUS_ERROR	2
 
+void SV_ParseClientCommand(string s);
 float bot_cmd_cc()
 {
-	clientcommand(self,bot_cmd.bot_cmd_parm_string);
+	SV_ParseClientCommand(bot_cmd.bot_cmd_parm_string);
 	return CMD_STATUS_FINISHED;
 }
 



More information about the nexuiz-commits mailing list