aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--bot/exts/moderation/voice_gate.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/bot/exts/moderation/voice_gate.py b/bot/exts/moderation/voice_gate.py
index 424f5f3d7..f959d5d11 100644
--- a/bot/exts/moderation/voice_gate.py
+++ b/bot/exts/moderation/voice_gate.py
@@ -28,10 +28,9 @@ FAILED_MESSAGE = (
)
MESSAGE_FIELD_MAP = {
- "joined_at": f"been on the server for less than {GateConf.minimum_days_member} days",
+ "joined_at": f"been on the server for fewer than {GateConf.minimum_days_member} days",
"voice_gate_blocked": "an active voice infraction",
- "total_messages": f"sent less than {GateConf.minimum_messages} messages",
- "activity_blocks": f"been active for fewer than {GateConf.minimum_activity_blocks} ten-minute blocks",
+ "activity_blocks": "not been active enough on the server yet",
}
VOICE_PING = (
@@ -94,7 +93,6 @@ class VoiceVerificationView(discord.ui.View):
"joined_at": (
interaction.user.joined_at > arrow.utcnow() - timedelta(days=GateConf.minimum_days_member)
),
- "total_messages": data["total_messages"] < GateConf.minimum_messages,
"voice_gate_blocked": data["voice_gate_blocked"],
"activity_blocks": data["activity_blocks"] < GateConf.minimum_activity_blocks,
}