[3.4] Improve helpset showaliases docstring (#5376) (#5377)

(cherry picked from commit a8f35f762c)

Co-authored-by: Kreus Amredes <67752638+Kreusada@users.noreply.github.com>

Co-authored-by: Kreus Amredes <67752638+Kreusada@users.noreply.github.com>
This commit is contained in:
Red-GitHubBot
2021-10-07 21:48:47 +02:00
committed by GitHub
parent 9ca977ba81
commit cda70a0c6a

View File

@@ -3155,9 +3155,9 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic):
show_aliases = not await ctx.bot._config.help.show_aliases()
await ctx.bot._config.help.show_aliases.set(show_aliases)
if show_aliases:
await ctx.send(_("Help will show commands aliases."))
await ctx.send(_("Help will now show command aliases."))
else:
await ctx.send(_("Help will not show commands aliases."))
await ctx.send(_("Help will no longer show command aliases."))
@helpset.command(name="usetick")
async def helpset_usetick(self, ctx: commands.Context, use_tick: bool = None):