diff --git a/bot/extensions/custom_roles/commands.py b/bot/extensions/custom_roles/commands.py index 62375617..a7e93d78 100644 --- a/bot/extensions/custom_roles/commands.py +++ b/bot/extensions/custom_roles/commands.py @@ -18,9 +18,9 @@ def __init__(self, bot): @staticmethod def role_embed(heading: str, role: discord.Role): embed = discord.Embed( - title=heading, - color=role.color, + description=f"# {heading}", timestamp=role.created_at, + color=role.color, ) embed.add_field(name="Name", value=utils.escape_markdown(role.name)) embed.add_field(name="Color", value=str(role.color))