r5663 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Jan 25 16:59:16 EST 2009


Author: div0
Date: 2009-01-25 16:59:16 -0500 (Sun, 25 Jan 2009)
New Revision: 5663

Modified:
   trunk/data/qcsrc/server/clientcommands.qc
Log:
fix *particles usage msg


Modified: trunk/data/qcsrc/server/clientcommands.qc
===================================================================
--- trunk/data/qcsrc/server/clientcommands.qc	2009-01-25 12:57:57 UTC (rev 5662)
+++ trunk/data/qcsrc/server/clientcommands.qc	2009-01-25 21:59:16 UTC (rev 5663)
@@ -283,7 +283,7 @@
 			pointparticles(effectnum, start, end, f);
 		}
 		else
-			print("Usage: sv_cheats 1; restart; cmd pointparticles effectname position(0..1) velocityvector multiplier\n");
+			sprint(self, "Usage: sv_cheats 1; restart; cmd pointparticles effectname position(0..1) velocityvector multiplier\n");
 	} else if(argv(0) == "trailparticles") {
 		if(sv_cheats && tokens == 3)
 		{
@@ -296,7 +296,7 @@
 			trailparticles(self, effectnum, w_shotorg, trace_endpos);
 		}
 		else
-			print("Usage: sv_cheats 1; restart; cmd trailparticles effectname shotorigin\n");
+			sprint(self, "Usage: sv_cheats 1; restart; cmd trailparticles effectname shotorigin\n");
 	} else {
 		//if(ctf_clientcommand())
 		//	return;




More information about the nexuiz-commits mailing list