Improve helpset showaliases docstring (#5376)

This commit is contained in:
Kreus Amredes 2021-10-07 20:22:35 +01:00 committed by GitHub
parent 6eb922e7d9
commit a8f35f762c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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):