From 103412222f76356441136163991e6480e0955723 Mon Sep 17 00:00:00 2001 From: Ske Date: Tue, 11 Dec 2018 23:21:24 +0100 Subject: [PATCH] Send member command help properly --- src/pluralkit/bot/commands/misc_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pluralkit/bot/commands/misc_commands.py b/src/pluralkit/bot/commands/misc_commands.py index bdbe1420..a19dce71 100644 --- a/src/pluralkit/bot/commands/misc_commands.py +++ b/src/pluralkit/bot/commands/misc_commands.py @@ -16,7 +16,7 @@ async def help_root(ctx: CommandContext): elif ctx.match("system"): await ctx.reply(help.system_commands, embed=help_footer_embed()) elif ctx.match("member"): - await ctx.reply(help.system_commands, embed=help_footer_embed()) + await ctx.reply(help.member_commands, embed=help_footer_embed()) else: await ctx.reply(help.root, embed=help_footer_embed())