aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-10-18 16:38:21 +0300
committerGravatar GitHub <[email protected]>2020-10-18 16:38:21 +0300
commit216bdb0947e9fa8b494e03f3be0d85867453f41d (patch)
tree9b924154888340945eb27c213c73e9d03f88e9ff
parentFix 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.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 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()
)