aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar scragly <[email protected]>2020-10-19 02:59:32 +1000
committerGravatar scragly <[email protected]>2020-10-19 02:59:32 +1000
commit7b8f85752098e5bfd77e033d8eddad3b8e5f2b40 (patch)
treedd43aa5d1d03cc3e5bf72e6a6c01cf8cf602d181
parentEnsure verified users can see verified message. (diff)
Address a grammar error in failed reasons.
An overlooked grammatical error occurred in exactly 1 (one) of the possible failure reasons when being verified for the voice gate system. This was unacceptable to the masses, so a swift correction has been added to address it, adding 1 (one) additional word to the listed reason.
-rw-r--r--bot/exts/moderation/voice_gate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/voice_gate.py b/bot/exts/moderation/voice_gate.py
index f158c2906..ee3ac4003 100644
--- a/bot/exts/moderation/voice_gate.py
+++ b/bot/exts/moderation/voice_gate.py
@@ -22,7 +22,7 @@ FAILED_MESSAGE = (
)
MESSAGE_FIELD_MAP = {
- "verified_at": f"have been verified for less {GateConf.minimum_days_verified} days",
+ "verified_at": f"have been verified for less than {GateConf.minimum_days_verified} days",
"voice_banned": "have an active voice ban infraction",
"total_messages": f"have sent less than {GateConf.minimum_messages} messages",
}