Skip to content

Commit

Permalink
#864: Use qualified name in !command
Browse files Browse the repository at this point in the history
  • Loading branch information
butteredwaffles committed Nov 13, 2023
1 parent d1394c0 commit 5e56030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ClemBot.Bot/bot/cogs/command_cog.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async def command(
opp_mode = "enable" if model.guild_disabled else "disable"
embed.set_footer(
text=f"You can {opp_mode} this command globally by typing "
f'"{await self.bot.current_prefix(ctx)}cmd {opp_mode} {cmd.name}"'
f'"{await self.bot.current_prefix(ctx)}cmd {opp_mode} {cmd.qualified_name}"'
)
await ctx.send(embed=embed)

Expand Down

0 comments on commit 5e56030

Please sign in to comment.