From b3ad265c22faf3583f67a4ec544ee222f3fa9410 Mon Sep 17 00:00:00 2001 From: CMDR furrycat Date: Sat, 20 Mar 2021 17:36:24 +0100 Subject: [PATCH] Fixed handle_help() for plugins. --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 2f3dd09..897a987 100644 --- a/app.py +++ b/app.py @@ -104,7 +104,7 @@ async def show_help(message, *args): '```url```' ] else: - result = await plugins.handle_help(message, *args) + result = await plugins.handle_help(message, command, *args[1:]) if result: return lines = ['*shrugs*'] -- 2.7.4