From a660e462487f3e36d6f1fafd69e99f0a9ace3745 Mon Sep 17 00:00:00 2001 From: div0 Date: Fri, 9 Feb 2007 21:28:08 +0000 Subject: [PATCH] deleted clientcommands check, now just let all through (that is now safe in DP) git-svn-id: svn://svn.icculus.org/nexuiz/trunk@2179 f962a42d-fe04-0410-a3ab-8c8b0445ebaa --- data/qcsrc/server/clientcommands.qc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data/qcsrc/server/clientcommands.qc b/data/qcsrc/server/clientcommands.qc index e677b41a6..57bb28417 100644 --- a/data/qcsrc/server/clientcommands.qc +++ b/data/qcsrc/server/clientcommands.qc @@ -386,6 +386,7 @@ void SV_ParseClientCommand(string s) { wordwrap_sprint(cmd, 1111); } else { cmd = argv(0); + /* checks not needed any more since DP has separated clientcommands and regular commands if(cmd != "status") if(cmd != "name") //if(cmd != "say") // handled above @@ -407,6 +408,7 @@ void SV_ParseClientCommand(string s) { ServerConsoleEcho(strcat("WARNING: Invalid clientcommand by ", self.netname, ": ", s), TRUE); return; } + */ clientcommand(self,s); } } -- 2.39.2