From 903b1c1702f139d33e0046ef021363d65b2483eb Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sat, 18 Jul 2020 02:23:00 +0100 Subject: [PATCH] Reverting test help command Gonna try to understand it later --- cogs/help/test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cogs/help/test.py b/cogs/help/test.py index 7efcea92..81bc7bb7 100644 --- a/cogs/help/test.py +++ b/cogs/help/test.py @@ -9,13 +9,13 @@ class testinghelp(commands.Cog): @commands.command(name="help2") @commands.has_permissions(add_reactions=True, embed_links=True) - async def _help(self, ctx, *cog): + async def help(self, ctx, *cog): """Gets all cogs and commands of mine.""" try: if not cog: """Cog listing. What more?""" halp = discord.Embed(title='Cog Listing and Uncatergorized Commands', - description=f'Use `{ctx.prefix}help *cog*` to find out more about them!\n(BTW, the Cog Name Must Be in Title Case, Just Like this Sentence.)') + description='Use `~help *cog*` to find out more about them!\n(BTW, the Cog Name Must Be in Title Case, Just Like this Sentence.)') cogs_desc = '' for x in self.bot.cogs: cogs_desc += ('{} - {}'.format(x, self.bot.cogs[x].__doc__) + '\n') @@ -39,7 +39,7 @@ class testinghelp(commands.Cog): for x in self.bot.cogs: for y in cog: if x == y: - halp = discord.Embed(title=cog[0] + ' Command', + halp = discord.Embed(title=cog[0] + ' Command Listing', description=self.bot.cogs[cog[0]].__doc__) for c in self.bot.get_cog(y).get_commands(): if not c.hidden: