From: z411 Date: Thu, 1 Apr 2021 21:28:00 +0000 (-0300) Subject: Fixed chat flood while in countdown X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0ee6c7220d002eb2431ad08a71939d6215aec81e;p=xonotic%2Fxonotic-data.pk3dir.git Fixed chat flood while in countdown --- diff --git a/qcsrc/server/chat.qc b/qcsrc/server/chat.qc index 3f56ca77e..82da61ff2 100644 --- a/qcsrc/server/chat.qc +++ b/qcsrc/server/chat.qc @@ -206,8 +206,9 @@ int Say(entity source, int teamsay, entity privatesay, string msgin, bool floodc flood = 1; } - if (timeout_status == TIMEOUT_ACTIVE) // when game is paused, no flood protection - source.(flood_field) = flood = 0; + // z411 : Why? + //if (timeout_status == TIMEOUT_ACTIVE) // when game is paused, no flood protection + // source.(flood_field) = flood = 0; } string sourcemsgstr, sourcecmsgstr;