aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/exts/info/help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/help.py b/bot/exts/info/help.py
index 99d503f5c..5d83f8f86 100644
--- a/bot/exts/info/help.py
+++ b/bot/exts/info/help.py
@@ -174,7 +174,7 @@ class CustomHelpCommand(HelpCommand):
command_details += f"**Can also use:** {aliases}\n\n"
# check if the user is allowed to run this command
- if not await command.can_run(self.context):
+ if not command.enabled or not await command.can_run(self.context):
command_details += "***You cannot run this command.***\n\n"
command_details += f"*{command.help or 'No details provided.'}*\n"