From 2b25166c227ce8c4c6ce20cdd917bf3bbdf8199a Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Mon, 24 Oct 2011 14:03:01 +0200 Subject: [PATCH] let's not care for those tempstrings for now --- qcsrc/server/clientcommands.qc | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/qcsrc/server/clientcommands.qc b/qcsrc/server/clientcommands.qc index 92336234a..cfbc5ff18 100644 --- a/qcsrc/server/clientcommands.qc +++ b/qcsrc/server/clientcommands.qc @@ -159,17 +159,11 @@ void SV_ParseClientCommand(string s) { if(cmd_name != "begin") { if(cmd_floodcheck()) - { - cmd_string = cmd_name = string_null; // unreference tempstrings return; - } } - if(MUTATOR_CALLHOOK(SV_ParseClientCommand)) { - cmd_string = cmd_name = string_null; // unreference tempstrings + if(MUTATOR_CALLHOOK(SV_ParseClientCommand)) return; // already handled - } - cmd_string = cmd_name = string_null; // unreference tempstrings if(GameCommand_Vote(s, self)) { return; -- 2.39.2