Skip to content

Commit

Permalink
Fix manager checks.py
Browse files Browse the repository at this point in the history
  • Loading branch information
WitherredAway authored Nov 1, 2024
1 parent dba0a37 commit 7c98280
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helpers/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ def is_community_manager():


def is_bot_manager():
return commands.check_any(commands.is_owner(), commands.has_role(constants.BOT_MANAGER_ROLE))
return commands.check_any(commands.is_owner(), commands.has_role(*constants.BOT_MANAGER_ROLES))


def is_server_manager():
return commands.check_any(commands.is_owner(), commands.has_role(constants.SERVER_MANAGER_ROLE))
return commands.check_any(commands.is_owner(), commands.has_role(*constants.SERVER_MANAGER_ROLES))


def is_moderator():
Expand Down

0 comments on commit 7c98280

Please sign in to comment.