From 4f8102f85325e32f7dee30a564f45f96729e850a Mon Sep 17 00:00:00 2001 From: div0 Date: Sun, 25 Jan 2009 21:59:16 +0000 Subject: [PATCH] fix *particles usage msg git-svn-id: svn://svn.icculus.org/nexuiz/trunk@5663 f962a42d-fe04-0410-a3ab-8c8b0445ebaa --- data/qcsrc/server/clientcommands.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/qcsrc/server/clientcommands.qc b/data/qcsrc/server/clientcommands.qc index 6e24ef0b4..14b2ac667 100644 --- a/data/qcsrc/server/clientcommands.qc +++ b/data/qcsrc/server/clientcommands.qc @@ -283,7 +283,7 @@ void SV_ParseClientCommand(string s) { 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 @@ void SV_ParseClientCommand(string s) { 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; -- 2.39.2