diff --git a/redbot/core/commands/requires.py b/redbot/core/commands/requires.py index 7c546b4e8..9759919ba 100644 --- a/redbot/core/commands/requires.py +++ b/redbot/core/commands/requires.py @@ -93,6 +93,10 @@ DM_PERMS.update( class PrivilegeLevel(enum.IntEnum): """Enumeration for special privileges.""" + # Maintainer Note: do NOT re-order these. + # Each privelege level also implies access to the ones before it. + # Inserting new privelege levels at a later point is fine if that is considered. + NONE = enum.auto() """No special privilege level."""