aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-10-18 16:36:55 +0300
committerGravatar GitHub <[email protected]>2020-10-18 16:36:55 +0300
commit905d90b27570831ad64d8e08cb8d0bc4d23c614e (patch)
treee47cdf7a0372e93e5c163d0bf1ccfea156014211
parentRemove 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.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 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)