We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5241752 commit d3806c9Copy full SHA for d3806c9
teapot/cogs/cmds.py
@@ -36,7 +36,7 @@ async def help(self, ctx, *cog):
36
if x == y:
37
embed = discord.Embed(color=0x7400FF)
38
cog_info = ''
39
- for c in bot.get_cog(y).get_commands():
+ for c in self.bot.get_cog(y).get_commands():
40
if not c.hidden:
41
cog_info += f"**{c.name}** - {c.help}\n"
42
embed.add_field(name=f"{cog[0]} Module", value=cog_info)
0 commit comments