From 503b522f7617f737cc1b814b27bf3b486b52de79 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Wed, 15 Aug 2012 11:36:01 +0200 Subject: [PATCH] fix syntax error in stuffto code --- qcsrc/server/command/sv_cmd.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/command/sv_cmd.qc b/qcsrc/server/command/sv_cmd.qc index 10f725f32..4699049d2 100644 --- a/qcsrc/server/command/sv_cmd.qc +++ b/qcsrc/server/command/sv_cmd.qc @@ -1351,7 +1351,7 @@ void GameCommand_stuffto(float request, float argc) { if(argv(2)) { - entity client = GetIndexedEntity(argc, 1)); + entity client = GetIndexedEntity(argc, 1); float accepted = VerifyClientEntity(client, TRUE, FALSE); if(accepted > 0) -- 2.39.2