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

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Wed Dec 2 15:48:53 EST 2009


Author: samual
Date: 2009-12-02 15:48:53 -0500 (Wed, 02 Dec 2009)
New Revision: 8358

Modified:
   trunk/data/qcsrc/server/clientcommands.qc
Log:
Fix a check in clientcommands.qc 

Modified: trunk/data/qcsrc/server/clientcommands.qc
===================================================================
--- trunk/data/qcsrc/server/clientcommands.qc	2009-12-02 20:25:18 UTC (rev 8357)
+++ trunk/data/qcsrc/server/clientcommands.qc	2009-12-02 20:48:53 UTC (rev 8358)
@@ -367,7 +367,7 @@
 		}
 		//clientcommand(self, formatmessage(s));
 	} else if(cmd == "info") {
-		cmd = cvar_string(strcat("sv_info_", argv(1)));
+		cmd = cvar_string_builtin(strcat("sv_info_", argv(1))); // This needed fixed for the cvar check
 		if(cmd == "")
 			sprint(self, "ERROR: unsupported info command\n");
 		else



More information about the nexuiz-commits mailing list