diff options
author | 2020-10-18 16:38:21 +0300 | |
---|---|---|
committer | 2020-10-18 16:38:21 +0300 | |
commit | 216bdb0947e9fa8b494e03f3be0d85867453f41d (patch) | |
tree | 9b924154888340945eb27c213c73e9d03f88e9ff | |
parent | Fix grammar of voice unban embed description (diff) |
Use "failed" instead "not passed" for feedback embed of voice gate fail
Co-authored-by: Joe Banks <[email protected]>
-rw-r--r-- | bot/exts/moderation/voice_gate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/voice_gate.py b/bot/exts/moderation/voice_gate.py index 70583655e..7cadca153 100644 --- a/bot/exts/moderation/voice_gate.py +++ b/bot/exts/moderation/voice_gate.py @@ -98,7 +98,7 @@ class VoiceGate(Cog): if failed: embed = discord.Embed( - title="Voice Gate not passed", + title="Voice Gate failed", description=FAILED_MESSAGE.format(reasons="\n".join(f'• You {reason}.' for reason in failed_reasons)), color=Colour.red() ) |