[nexuiz-commits] r6781 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Thu May 28 03:20:27 EDT 2009


Author: div0
Date: 2009-05-28 03:20:22 -0400 (Thu, 28 May 2009)
New Revision: 6781

Modified:
   trunk/data/qcsrc/client/Main.qc
Log:
fix cl_cmd help


Modified: trunk/data/qcsrc/client/Main.qc
===================================================================
--- trunk/data/qcsrc/client/Main.qc	2009-05-27 16:32:23 UTC (rev 6780)
+++ trunk/data/qcsrc/client/Main.qc	2009-05-28 07:20:22 UTC (rev 6781)
@@ -420,12 +420,13 @@
 
 	if(argv(0) == "help" || argc == 0)
 	{
-		print("Usage: sv_cmd COMMAND..., where possible commands are:\n");
+		print("Usage: cl_cmd COMMAND..., where possible commands are:\n");
 		print("  settemp cvar value\n");
 		print("  radar\n");
 		print("  sbar_columns_set ...\n");
 		print("  sbar_columns_help\n");
 		GameCommand_Generic("help");
+		return;
 	}
 
 	if(GameCommand_Generic(msg))



More information about the nexuiz-commits mailing list