diff options
| author | 2025-07-23 01:42:21 +0100 | |
|---|---|---|
| committer | 2025-07-23 01:42:21 +0100 | |
| commit | aab56399a185433743336a1ca2fbd31d2884371a (patch) | |
| tree | 83d9f17c5328111bdb09cf6484173b9997dc18e3 | |
| parent | Dependency re-lock (diff) | |
Update voice verification thresholds
| -rw-r--r-- | bot/constants.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/constants.py b/bot/constants.py index 35e9b399f..29c382320 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -362,9 +362,9 @@ PythonNews = _PythonNews()  class _VoiceGate(EnvConfig, env_prefix="voice_gate_"):      delete_after_delay: int = 60 -    minimum_activity_blocks: int = 3 +    minimum_activity_blocks: int = 9 # 1h30m      minimum_days_member: int = 3 -    minimum_messages: int = 50 +    minimum_messages: int = 25  VoiceGate = _VoiceGate()  |