From 1755141520a1d040da0296a5db35b6076f27eb4d Mon Sep 17 00:00:00 2001 From: Samual Date: Thu, 4 Aug 2011 13:38:22 -0400 Subject: [PATCH] Make it compile --- qcsrc/server/clientcommands.qc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/qcsrc/server/clientcommands.qc b/qcsrc/server/clientcommands.qc index 8346f64ce..88672c7e3 100644 --- a/qcsrc/server/clientcommands.qc +++ b/qcsrc/server/clientcommands.qc @@ -684,6 +684,8 @@ void ClientCommand_records(float request, entity client) void ClientCommand_reportcvar(float request, entity client, string command) { float tokens; + string s; + switch(request) { case CC_REQUEST_HELP: @@ -706,7 +708,7 @@ void ClientCommand_reportcvar(float request, entity client, string command) return; } } - +/* void ClientCommand_(float request, entity client) { switch(request) @@ -746,6 +748,7 @@ void ClientCommand_(float request, entity client) return; } } +*/ // ====================================== @@ -835,7 +838,7 @@ void SV_ParseClientCommand(string command) case "maplist": ClientCommand_maplist(search_request_type, self); break; case "rankings": ClientCommand_rankings(search_request_type, self); break; case "ready": ClientCommand_ready(search_request_type, self); break; - case "records": ClientCommand_records(search_Request_type, self); break; + case "records": ClientCommand_records(search_request_type, self); break; default: clientcommand(self, command); //print("Invalid command. For a list of supported commands, try cmd help.\n"); -- 2.39.2