From 011daf306388efc55314646d5d34d3302483ee60 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Fri, 8 Jun 2018 14:48:28 -0800 Subject: [PATCH] Added signature to detailed help --- src/exts/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/exts/utils.py b/src/exts/utils.py index ee44707..81265d8 100644 --- a/src/exts/utils.py +++ b/src/exts/utils.py @@ -749,6 +749,7 @@ class Utils: if command and not command.hidden: pag.add(f'\uFFF6{command.name}') + pag.add(f'Usage: {prefixes.split()[0]}{command.signature}\n') pag.add(f'{command.help}') book = utils.Book(pag, (None, ctx.channel, self.bot, ctx.message))