From 0752b114b7e692a058f3dea7750464c5ef80ab19 Mon Sep 17 00:00:00 2001 From: Juhu <5894800-Juhu_@users.noreply.gitlab.com> Date: Mon, 19 Jun 2023 12:30:34 +0200 Subject: [PATCH] exempt minigame commands from flood control --- qcsrc/server/command/cmd.qc | 1 + 1 file changed, 1 insertion(+) diff --git a/qcsrc/server/command/cmd.qc b/qcsrc/server/command/cmd.qc index f93880a68..0f1afa6b3 100644 --- a/qcsrc/server/command/cmd.qc +++ b/qcsrc/server/command/cmd.qc @@ -1025,6 +1025,7 @@ void SV_ParseClientCommand(entity this, string command) case "sentcvar": break; // handled by server in this file case "spawn": break; // handled by engine in host_cmd.c case "say": case "say_team": case "tell": break; // chat has its own flood control in chat.qc + case "minigame": break; // minigame commands do not require flood control case "color": case "topcolor": case "bottomcolor": // handled by engine in host_cmd.c if(!IS_CLIENT(this)) // on connection { -- 2.39.2