Fixed handle_help() for plugins.
authorCMDR furrycat <elite@furrycat.net>
Sat, 20 Mar 2021 16:36:24 +0000 (17:36 +0100)
committerCMDR furrycat <elite@furrycat.net>
Sat, 20 Mar 2021 16:36:24 +0000 (17:36 +0100)
app.py

diff --git a/app.py b/app.py
index 2f3dd09..897a987 100644 (file)
--- 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*']