From 33e662d6836bf02b89f3ddcb906c24d3c1313343 Mon Sep 17 00:00:00 2001 From: Suwako Moriya Date: Sun, 5 Apr 2020 02:50:46 +0200 Subject: [PATCH] [Base] Help message design update --- modules/base/Base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/base/Base.py b/modules/base/Base.py index 508e227..9fe5c24 100644 --- a/modules/base/Base.py +++ b/modules/base/Base.py @@ -42,12 +42,12 @@ class BaseClass: embed = discord.Embed( title="[{nom}] - Aide".format(nom=self.name), - description=self.help["description"].format(prefix=self.client.config['prefix']), + description="*" + self.help["description"].format(prefix=self.client.config['prefix']) + "*", color=self.color ) for command, description in self.help["commands"].items(): embed.add_field(name=command.format(prefix=self.client.config['prefix'], command=self.command_text), - value=description.format(prefix=self.client.config['prefix'], command=self.command_text), + value="-> " + description.format(prefix=self.client.config['prefix'], command=self.command_text), inline=False) await channel.send(embed=embed)