From 1c4193cce24ac4891446425f5625602e97c1d826 Mon Sep 17 00:00:00 2001 From: Michael H Date: Thu, 17 Jan 2019 22:48:00 -0500 Subject: [PATCH] [Permissions] Quick extra comment of importance (#2379) --- redbot/core/commands/requires.py | 4 ++++ 1 file changed, 4 insertions(+) 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."""