Skip to content

Commit 2fbfa28

Browse files
committed
made voice gate failure reason phrasing more consistent
1 parent fe2dabf commit 2fbfa28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bot/exts/moderation/voice_gate.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
)
2929

3030
MESSAGE_FIELD_MAP = {
31-
"joined_at": f"been on the server for less than {GateConf.minimum_days_member} days",
31+
"joined_at": f"been on the server for fewer than {GateConf.minimum_days_member} days",
3232
"voice_gate_blocked": "an active voice infraction",
33-
"total_messages": f"sent less than {GateConf.minimum_messages} messages",
34-
"activity_blocks": f"been active for fewer than {GateConf.minimum_activity_blocks} ten-minute blocks",
33+
"total_messages": f"sent fewer than {GateConf.minimum_messages} messages",
34+
"activity_blocks": f"been active for fewer than {GateConf.minimum_activity_blocks} 10-minute blocks",
3535
}
3636

3737
VOICE_PING = (

0 commit comments

Comments
 (0)