diff options
author | 2020-10-18 16:36:55 +0300 | |
---|---|---|
committer | 2020-10-18 16:36:55 +0300 | |
commit | 905d90b27570831ad64d8e08cb8d0bc4d23c614e (patch) | |
tree | e47cdf7a0372e93e5c163d0bf1ccfea156014211 | |
parent | Remove too much aliases for voice verify command (diff) |
Use bullet points instead of - for voice verify failing reasons
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 7c3c6e1b0..70583655e 100644 --- a/bot/exts/moderation/voice_gate.py +++ b/bot/exts/moderation/voice_gate.py @@ -99,7 +99,7 @@ class VoiceGate(Cog): if failed: embed = discord.Embed( title="Voice Gate not passed", - description=FAILED_MESSAGE.format(reasons="\n".join(f'- You {reason}.' for reason in failed_reasons)), + description=FAILED_MESSAGE.format(reasons="\n".join(f'• You {reason}.' for reason in failed_reasons)), color=Colour.red() ) await ctx.author.send(embed=embed) |