diff --git a/commands/basic.py b/commands/basic.py index 5ab2561..027b267 100644 --- a/commands/basic.py +++ b/commands/basic.py @@ -7,10 +7,16 @@ class Main(commands.Cog): @commands.command() async def help(self, ctx: nextcord.Message): - embed = nextcord.Embed(title="Help") + embeds = [ + nextcord.Embed(title="Help"), + nextcord.Embed(title="Info") + ] for command in self.client.commands: - embed.add_field(name=command.name, value=f"Arguments: {command.usage} \nDescription: {command.description}") - await ctx.reply(embed=embed) + embeds[0].add_field(name=command.name, value=f"Arguments: {command.usage} \nDescription: {command.description}") + + embeds[1].set_author(name="Entar", url="https://git.squog.ru", icon_url="https://git.squog.ru/entar/SquogBot/raw/branch/master/images/Kidnap1.jpg") + embeds[1].description = "SquogBot made by Entardev" + await ctx.reply(embeds=embeds) @commands.command(description="Check how fast the bot will reply to you.") async def ping(self, ctx: nextcord.Message):