From 354e93ffdafb347297605e92dd4ac091f4d2476f Mon Sep 17 00:00:00 2001 From: linuxdaemon Date: Tue, 14 Nov 2017 19:35:36 -0600 Subject: [PATCH] Remove permission checks for cmdinfo --- plugins/core/help.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugins/core/help.py b/plugins/core/help.py index 7bf6696df..a3229e860 100644 --- a/plugins/core/help.py +++ b/plugins/core/help.py @@ -108,9 +108,6 @@ def cmdinfo(text, bot, notice, event): if cmd_hook.permissions: info += ", Permissions: [{}]".format(', '.join(cmd_hook.permissions)) - if not (yield from event.check_permissions(cmd_hook.permissions)): - notice("Sorry, you are not allowed to view information about this command") - return notice(info)